Changeset da0c91e7 in mainline for libc/generic/async.c
- Timestamp:
- 2006-06-01T23:01:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46bd593f
- Parents:
- c1d2c9d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/async.c
rc1d2c9d rda0c91e7 129 129 } connection_t; 130 130 131 131 132 __thread connection_t *PS_connection; 133 134 static void default_client_connection(ipc_callid_t callid, ipc_call_t *call); 135 static async_client_conn_t client_connection = default_client_connection; 132 136 133 137 /** Add microseconds to give timeval */ … … 273 277 * user code. 274 278 */ 275 voidclient_connection(ipc_callid_t callid, ipc_call_t *call)279 static void default_client_connection(ipc_callid_t callid, ipc_call_t *call) 276 280 { 277 281 ipc_answer_fast(callid, ENOENT, 0, 0); … … 671 675 free(msg); 672 676 } 677 678 /** Set function that is called, IPC_M_CONNECT_ME_TO is received 679 * 680 * @param conn Function that will form new psthread. 681 */ 682 void async_set_client_connection(async_client_conn_t conn) 683 { 684 client_connection = conn; 685 }
Note:
See TracChangeset
for help on using the changeset viewer.