Ignore:
File:
1 edited

Legend:

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

    rdcc150cb r9ef495f  
    16741674       
    16751675        ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4, msg,
    1676             reply_received);
     1676            reply_received, true);
    16771677       
    16781678        return (aid_t) msg;
     
    17121712       
    17131713        ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4, arg5,
    1714             msg, reply_received);
     1714            msg, reply_received, true);
    17151715       
    17161716        return (aid_t) msg;
     
    20012001{
    20022002        if (exch != NULL)
    2003                 ipc_call_async_0(exch->phone, imethod, NULL, NULL);
     2003                ipc_call_async_0(exch->phone, imethod, NULL, NULL, true);
    20042004}
    20052005
     
    20072007{
    20082008        if (exch != NULL)
    2009                 ipc_call_async_1(exch->phone, imethod, arg1, NULL, NULL);
     2009                ipc_call_async_1(exch->phone, imethod, arg1, NULL, NULL, true);
    20102010}
    20112011
     
    20142014{
    20152015        if (exch != NULL)
    2016                 ipc_call_async_2(exch->phone, imethod, arg1, arg2, NULL, NULL);
     2016                ipc_call_async_2(exch->phone, imethod, arg1, arg2, NULL, NULL,
     2017                    true);
    20172018}
    20182019
     
    20222023        if (exch != NULL)
    20232024                ipc_call_async_3(exch->phone, imethod, arg1, arg2, arg3, NULL,
    2024                     NULL);
     2025                    NULL, true);
    20252026}
    20262027
     
    20302031        if (exch != NULL)
    20312032                ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4,
    2032                     NULL, NULL);
     2033                    NULL, NULL, true);
    20332034}
    20342035
     
    20382039        if (exch != NULL)
    20392040                ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4,
    2040                     arg5, NULL, NULL);
     2041                    arg5, NULL, NULL, true);
    20412042}
    20422043
     
    21612162       
    21622163        ipc_call_async_0(exch->phone, IPC_M_CLONE_ESTABLISH, msg,
    2163             reply_received);
     2164            reply_received, true);
    21642165       
    21652166        sysarg_t rc;
     
    22102211       
    22112212        ipc_call_async_4(phone, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, arg4,
    2212             msg, reply_received);
     2213            msg, reply_received, true);
    22132214       
    22142215        sysarg_t rc;
Note: See TracChangeset for help on using the changeset viewer.