Changeset b5e68c8 in mainline for uspace/lib/c/generic/ipc/ns.c
- Timestamp:
- 2011-05-12T16:49:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f36787d7
- Parents:
- e80329d6 (diff), 750636a (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ipc/ns.c
re80329d6 rb5e68c8 1 1 /* 2 * Copyright (c) 201 0Martin Decky2 * Copyright (c) 2011 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib net29 /** @addtogroup libc 30 30 * @{ 31 31 */ 32 /** @file 33 */ 32 34 33 #i fndef LIBNET_TL_LOCAL_H_34 # define LIBNET_TL_LOCAL_H_35 #include <async.h> 36 #include <ipc/ns.h> 35 37 36 #include <ipc/ipc.h> 37 #include <async.h> 38 int service_register(sysarg_t service) 39 { 40 return async_connect_to_me(PHONE_NS, service, 0, 0, NULL); 41 } 38 42 39 extern int tl_module_message_standalone(ipc_callid_t, ipc_call_t *, 40 ipc_call_t *, int *); 41 extern int tl_module_start_standalone(async_client_conn_t); 43 int service_connect(sysarg_t service, sysarg_t arg2, sysarg_t arg3) 44 { 45 return async_connect_me_to(PHONE_NS, service, arg2, arg3); 46 } 42 47 43 #endif 48 int service_connect_blocking(sysarg_t service, sysarg_t arg2, sysarg_t arg3) 49 { 50 return async_connect_me_to_blocking(PHONE_NS, service, arg2, arg3); 51 } 44 52 45 53 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.