Changeset 34e91bf in mainline
- Timestamp:
- 2019-11-16T23:42:54Z (5 years ago)
- Children:
- 2f04bdd
- Parents:
- ae004bc
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-11-16 23:14:25)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-11-16 23:42:54)
- Location:
- uspace
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
rae004bc r34e91bf 167 167 generic/stats.c \ 168 168 generic/taskman.c \ 169 generic/taskman_noasync.c \170 169 generic/assert.c \ 171 170 generic/bsearch.c \ -
uspace/srv/ns/ns.c
rae004bc r34e91bf 45 45 #include <errno.h> 46 46 #include <ipc/taskman.h> 47 #include <taskman_noasync.h> 47 #include <taskman.h> 48 #include <task.h> 48 49 49 50 #include "ns.h" … … 119 120 return rc; 120 121 121 rc = taskman_intro_ns _noasync();122 rc = taskman_intro_ns(); 122 123 if (rc != EOK) { 123 124 printf("%s: not accepted by taskman (%i)\n", NAME, rc); 124 125 return rc; 125 126 } 126 task_retval _noasync(0);127 task_retval(0); 127 128 128 129 async_set_fallback_port_handler(ns_connection, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.