Changeset 19a1800 in mainline for uspace/lib/c/generic/loader.c
- Timestamp:
- 2011-03-01T22:20:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e24e7b1
- Parents:
- 976f546 (diff), ac8285d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loader.c
r976f546 r19a1800 33 33 */ 34 34 35 #include <ipc/ipc.h>36 35 #include <ipc/loader.h> 37 36 #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 = ipc_connect_me_to_blocking(PHONE_NS,SERVICE_LOAD, 0, 0);65 int phone_id = service_connect_blocking(SERVICE_LOAD, 0, 0); 66 66 if (phone_id < 0) 67 67 return NULL; … … 319 319 return rc; 320 320 321 ipc_hangup(ldr->phone_id);321 async_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 ipc_hangup(ldr->phone_id);339 async_hangup(ldr->phone_id); 340 340 ldr->phone_id = 0; 341 341 }
Note:
See TracChangeset
for help on using the changeset viewer.