Changes in uspace/lib/c/include/net/modules.h [774e6d1a:1bfd3d3] in mainline
- File:
-
- 1 edited
-
uspace/lib/c/include/net/modules.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/net/modules.h
r774e6d1a r1bfd3d3 49 49 #include <sys/time.h> 50 50 51 /** Converts the data length between different types. 52 * 53 * @param[in] type_from The source type. 54 * @param[in] type_to The destination type. 55 * @param[in] count The number units of the source type size. 56 */ 57 #define CONVERT_SIZE(type_from, type_to, count) \ 58 ((sizeof(type_from) / sizeof(type_to)) * (count)) 59 60 /** Registers the module service at the name server. 61 * 62 * @param[in] me The module service. 63 * @param[out] phonehash The created phone hash. 64 */ 65 #define REGISTER_ME(me, phonehash) \ 66 ipc_connect_to_me(PHONE_NS, (me), 0, 0, (phonehash)) 67 51 68 /** Connect to the needed module function type definition. 52 69 * 53 * @param[in] need The needed module service. 54 * 55 * @return The phone of the needed service. 56 * 70 * @param[in] need The needed module service. 71 * @return The phone of the needed service. 57 72 */ 58 73 typedef int connect_module_t(services_t need); 59 74 60 extern void answer_call(ipc_callid_t, int, ipc_call_t *, size_t);61 extern int bind_service(services_t, sysarg_t, sysarg_t, sysarg_t,75 extern void answer_call(ipc_callid_t, int, ipc_call_t *, int); 76 extern int bind_service(services_t, ipcarg_t, ipcarg_t, ipcarg_t, 62 77 async_client_conn_t); 63 extern int bind_service_timeout(services_t, sysarg_t, sysarg_t, sysarg_t,78 extern int bind_service_timeout(services_t, ipcarg_t, ipcarg_t, ipcarg_t, 64 79 async_client_conn_t, suseconds_t); 65 80 extern int connect_to_service(services_t); 66 81 extern int connect_to_service_timeout(services_t, suseconds_t); 82 extern int data_receive(void **, size_t *); 67 83 extern int data_reply(void *, size_t); 68 extern void refresh_answer(ipc_call_t *, size_t *);84 extern void refresh_answer(ipc_call_t *, int *); 69 85 70 86 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
