Changeset e0e7eba in mainline


Ignore:
Timestamp:
2019-08-07T04:41:28Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
5044114
Parents:
2f44fafd
git-author:
Michal Koutný <xm.koutny+hos@…> (2015-10-12 22:03:25)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-08-07 04:41:28)
Message:

taskman: Remove remainings from NS
Conflicts:

uspace/lib/c/include/ipc/ns.h
uspace/srv/ns/ns.c
uspace/srv/ns/task.c
uspace/srv/ns/task.h

Location:
uspace
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/ns.h

    r2f44fafd re0e7eba  
    4141        NS_PING = IPC_FIRST_USER_METHOD,
    4242        NS_REGISTER,
    43         NS_REGISTER_BROKER,
    44         NS_ID_INTRO
     43        NS_REGISTER_BROKER
    4544} ns_request_t;
    4645
  • uspace/srv/ns/Makefile

    r2f44fafd re0e7eba  
    3434SOURCES = \
    3535        ns.c \
    36         service.c \
    37         task.c
     36        service.c
    3837
    3938include $(USPACE_PREFIX)/Makefile.common
  • uspace/srv/ns/ns.c

    r2f44fafd re0e7eba  
    4545#include "ns.h"
    4646#include "service.h"
    47 #include "task.h"
    4847
    4948static void ns_connection(ipc_call_t *icall, void *arg)
     
    9594                        retval = EOK;
    9695                        break;
    97                 case NS_ID_INTRO:
    98                         retval = ns_task_id_intro(&call);
    99                         break;
    10096                default:
    10197                        printf("%s: Method not supported (%" PRIun ")\n",
     
    120116                return rc;
    121117
    122         rc = task_init();
    123         if (rc != EOK)
    124                 return rc;
    125 
    126118        async_set_fallback_port_handler(ns_connection, NULL);
    127119
Note: See TracChangeset for help on using the changeset viewer.