Changeset e0e7eba in mainline
- Timestamp:
- 2019-08-07T04:41:28Z (6 years ago)
- 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)
- Location:
- uspace
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/ns.h
r2f44fafd re0e7eba 41 41 NS_PING = IPC_FIRST_USER_METHOD, 42 42 NS_REGISTER, 43 NS_REGISTER_BROKER, 44 NS_ID_INTRO 43 NS_REGISTER_BROKER 45 44 } ns_request_t; 46 45 -
uspace/srv/ns/Makefile
r2f44fafd re0e7eba 34 34 SOURCES = \ 35 35 ns.c \ 36 service.c \ 37 task.c 36 service.c 38 37 39 38 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/ns/ns.c
r2f44fafd re0e7eba 45 45 #include "ns.h" 46 46 #include "service.h" 47 #include "task.h"48 47 49 48 static void ns_connection(ipc_call_t *icall, void *arg) … … 95 94 retval = EOK; 96 95 break; 97 case NS_ID_INTRO:98 retval = ns_task_id_intro(&call);99 break;100 96 default: 101 97 printf("%s: Method not supported (%" PRIun ")\n", … … 120 116 return rc; 121 117 122 rc = task_init();123 if (rc != EOK)124 return rc;125 126 118 async_set_fallback_port_handler(ns_connection, NULL); 127 119
Note:
See TracChangeset
for help on using the changeset viewer.