Changes in uspace/lib/c/generic/loader.c [64d2b10:96b02eb9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loader.c
r64d2b10 r96b02eb9 33 33 */ 34 34 35 #include <ipc/ipc.h> 35 36 #include <ipc/loader.h> 36 37 #include <ipc/services.h> 37 #include <ipc/ns.h>38 38 #include <libc.h> 39 39 #include <task.h> … … 63 63 loader_t *loader_connect(void) 64 64 { 65 int phone_id = service_connect_blocking(SERVICE_LOAD, 0, 0);65 int phone_id = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_LOAD, 0, 0); 66 66 if (phone_id < 0) 67 67 return NULL; … … 319 319 return rc; 320 320 321 async_hangup(ldr->phone_id);321 ipc_hangup(ldr->phone_id); 322 322 ldr->phone_id = 0; 323 323 return EOK; … … 337 337 void loader_abort(loader_t *ldr) 338 338 { 339 async_hangup(ldr->phone_id);339 ipc_hangup(ldr->phone_id); 340 340 ldr->phone_id = 0; 341 341 }
Note:
See TracChangeset
for help on using the changeset viewer.