Changeset 012dd8e in mainline for uspace/lib/c/generic/loader.c
- Timestamp:
- 2019-08-07T09:15:30Z (6 years ago)
- Children:
- e8747bd8
- Parents:
- 780c8ce
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-01 00:08:04)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:15:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loader.c
r780c8ce r012dd8e 45 45 #include <task.h> 46 46 #include <vfs/vfs.h> 47 47 48 #include "private/loader.h" 49 #include "private/taskman.h" 48 50 49 51 /** Connect to a new program loader. … … 66 68 if (ldr == NULL) 67 69 return NULL; 68 69 async_sess_t *sess = 70 service_connect_blocking(SERVICE_TASKMAN, TASKMAN_CONNECT_TO_LOADER, 0); 70 71 async_sess_t *sess = taskman_session_loader(); 71 72 if (sess == NULL) { 72 73 free(ldr);
Note:
See TracChangeset
for help on using the changeset viewer.