Changes in uspace/lib/c/generic/async.c [6aae539d:1db6dfd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r6aae539d r1db6dfd 946 946 947 947 switch (IPC_GET_IMETHOD(*call)) { 948 case IPC_M_C LONE_ESTABLISH:948 case IPC_M_CONNECT_ME: 949 949 case IPC_M_CONNECT_ME_TO: 950 950 /* Open new connection with fibril, etc. */ … … 1668 1668 } 1669 1669 1670 /** Wrapper for making IPC_M_C LONE_ESTABLISHcalls using the async framework.1671 * 1672 * Ask for a cloned connection to some service.1670 /** Wrapper for making IPC_M_CONNECT_ME calls using the async framework. 1671 * 1672 * Ask through for a cloned connection to some service. 1673 1673 * 1674 1674 * @param mgmt Exchange management style. … … 1678 1678 * 1679 1679 */ 1680 async_sess_t *async_c lone_establish(exch_mgmt_t mgmt, async_exch_t *exch)1680 async_sess_t *async_connect_me(exch_mgmt_t mgmt, async_exch_t *exch) 1681 1681 { 1682 1682 if (exch == NULL) { … … 1703 1703 msg->wdata.active = true; 1704 1704 1705 ipc_call_async_0(exch->phone, IPC_M_C LONE_ESTABLISH, msg,1705 ipc_call_async_0(exch->phone, IPC_M_CONNECT_ME, msg, 1706 1706 reply_received, true); 1707 1707
Note:
See TracChangeset
for help on using the changeset viewer.