Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/ipc.c

    r124c061 r228e490  
    578578 * @param arg2          Service-defined argument.
    579579 * @param arg3          Service-defined argument.
    580  * @param taskhash      Storage where the kernel will store an opaque
    581  *                      identifier of the client task.
    582  * @param phonehash     Storage where the kernel will store an opaque
     580 * @param phonehash     Storage where the library will store an opaque
    583581 *                      identifier of the phone that will be used for incoming
    584582 *                      calls. This identifier can be used for connection
     
    588586 */
    589587int ipc_connect_to_me(int phoneid, int arg1, int arg2, int arg3,
    590     sysarg_t *taskhash, sysarg_t *phonehash)
     588    sysarg_t *phonehash)
    591589{
    592590        return ipc_call_sync_3_5(phoneid, IPC_M_CONNECT_TO_ME, arg1, arg2,
    593             arg3, NULL, NULL, NULL, taskhash, phonehash);
     591            arg3, NULL, NULL, NULL, NULL, phonehash);
    594592}
    595593
Note: See TracChangeset for help on using the changeset viewer.