Changeset 38c706cc in mainline for uspace/lib/libc/generic/ipc.c


Ignore:
Timestamp:
2007-12-04T19:54:53Z (17 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6364d3c
Parents:
90c35436
Message:

Extended IPC_M_CONNECT_TO_ME to use 3 user defined parameters.
Phone identifier is passed in ARG5.

File:
1 edited

Legend:

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

    r90c35436 r38c706cc  
    570570 * @param arg1          Service-defined argument.
    571571 * @param arg2          Service-defined argument.
     572 * @param arg3          Service-defined argument.
    572573 * @param phonehash     Storage where the library will store an opaque
    573574 *                      identifier of the phone that will be used for incoming
     
    577578 * @return              Zero on success or a negative error code.
    578579 */
    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);
     580int 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);
    583585}
    584586
Note: See TracChangeset for help on using the changeset viewer.