Changes in uspace/lib/c/generic/ipc.c [79ae36dd:10477601] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ipc.c
r79ae36dd r10477601 632 632 } 633 633 634 /** Request cloned connection.635 *636 * @param phoneid Phone handle used for contacting the other side.637 *638 * @return Cloned phone handle on success or a negative error code.639 *640 */641 int ipc_connect_me(int phoneid)642 {643 sysarg_t newphid;644 int res = ipc_call_sync_0_5(phoneid, IPC_M_CONNECT_ME, NULL, NULL,645 NULL, NULL, &newphid);646 if (res)647 return res;648 649 return newphid;650 }651 652 634 /** Request new connection. 653 635 *
Note:
See TracChangeset
for help on using the changeset viewer.