Changes in uspace/lib/c/generic/async_obsolete.c [b76a7329:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async_obsolete.c
rb76a7329 r79ae36dd 38 38 #include <async.h> 39 39 #include <async_obsolete.h> 40 #include "private/async.h"41 40 #undef LIBC_ASYNC_C_ 42 41 #undef LIBC_ASYNC_OBSOLETE_C_ … … 45 44 #include <malloc.h> 46 45 #include <errno.h> 46 #include "private/async.h" 47 47 48 48 /** Send message and return id of the sent message. … … 166 166 } 167 167 168 void async_obsolete_serialize_start(void) 169 { 170 fibril_inc_sercount(); 171 } 172 173 void async_obsolete_serialize_end(void) 174 { 175 fibril_dec_sercount(); 176 } 177 168 178 /** Wrapper for IPC_M_DATA_WRITE calls using the async framework. 169 179 * … … 230 240 */ 231 241 int async_obsolete_connect_to_me(int phone, sysarg_t arg1, sysarg_t arg2, 232 sysarg_t arg3, async_client_conn_t client_receiver , void *carg)242 sysarg_t arg3, async_client_conn_t client_receiver) 233 243 { 234 244 sysarg_t task_hash; … … 241 251 if (client_receiver != NULL) 242 252 async_new_connection(task_hash, phone_hash, 0, NULL, 243 client_receiver , carg);253 client_receiver); 244 254 245 255 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.