Changes in uspace/lib/c/generic/ipc.c [10477601:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/ipc.c
r10477601 r79ae36dd 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 634 652 /** Request new connection. 635 653 *
Note:
See TracChangeset
for help on using the changeset viewer.