Changeset 0a8f070 in mainline for uspace/lib/c/generic/loader.c
- Timestamp:
- 2019-08-07T02:33:03Z (6 years ago)
- Children:
- fe86d9d
- Parents:
- 103939e
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-08-16 16:04:14)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 02:33:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loader.c
r103939e r0a8f070 33 33 */ 34 34 35 #include <async.h> 36 #include <errno.h> 35 37 #include <ipc/loader.h> 36 38 #include <ipc/services.h> 39 #include <ipc/taskman.h> 40 #include <libc.h> 41 #include <loader/loader.h> 37 42 #include <ns.h> 38 #include <libc.h> 43 #include <stdlib.h> 44 #include <str.h> 39 45 #include <task.h> 40 #include <str.h>41 #include <stdlib.h>42 #include <async.h>43 #include <errno.h>44 46 #include <vfs/vfs.h> 45 #include <loader/loader.h>46 47 #include "private/loader.h" 47 48 … … 67 68 68 69 async_sess_t *sess = 69 service_connect_blocking(SERVICE_ LOADER, INTERFACE_LOADER, 0);70 service_connect_blocking(SERVICE_TASKMAN, TASKMAN_CONNECT_TO_LOADER, 0); 70 71 if (sess == NULL) { 71 72 free(ldr);
Note:
See TracChangeset
for help on using the changeset viewer.