Changeset 38c706cc in mainline for uspace/lib/libc/generic/ipc.c
- Timestamp:
- 2007-12-04T19:54:53Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6364d3c
- Parents:
- 90c35436
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/ipc.c
r90c35436 r38c706cc 570 570 * @param arg1 Service-defined argument. 571 571 * @param arg2 Service-defined argument. 572 * @param arg3 Service-defined argument. 572 573 * @param phonehash Storage where the library will store an opaque 573 574 * identifier of the phone that will be used for incoming … … 577 578 * @return Zero on success or a negative error code. 578 579 */ 579 int ipc_connect_to_me(int phoneid, int arg1, int arg2, ipcarg_t *phonehash) 580 { 581 return ipc_call_sync_2_3(phoneid, IPC_M_CONNECT_TO_ME, arg1, arg2, 582 NULL, NULL, phonehash); 580 int ipc_connect_to_me(int phoneid, int arg1, int arg2, int arg3, 581 ipcarg_t *phonehash) 582 { 583 return ipc_call_sync_3_5(phoneid, IPC_M_CONNECT_TO_ME, arg1, arg2, 584 arg3, NULL, NULL, NULL, NULL, phonehash); 583 585 } 584 586
Note:
See TracChangeset
for help on using the changeset viewer.