Changeset dcc150cb in mainline for uspace/lib/c/generic/async.c


Ignore:
Timestamp:
2016-05-23T11:18:33Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f570cdf
Parents:
f6017ee
Message:

Fibrils can always be preempted during IPC

File:
1 edited

Legend:

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

    rf6017ee rdcc150cb  
    16741674       
    16751675        ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4, msg,
    1676             reply_received, true);
     1676            reply_received);
    16771677       
    16781678        return (aid_t) msg;
     
    17121712       
    17131713        ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4, arg5,
    1714             msg, reply_received, true);
     1714            msg, reply_received);
    17151715       
    17161716        return (aid_t) msg;
     
    20012001{
    20022002        if (exch != NULL)
    2003                 ipc_call_async_0(exch->phone, imethod, NULL, NULL, true);
     2003                ipc_call_async_0(exch->phone, imethod, NULL, NULL);
    20042004}
    20052005
     
    20072007{
    20082008        if (exch != NULL)
    2009                 ipc_call_async_1(exch->phone, imethod, arg1, NULL, NULL, true);
     2009                ipc_call_async_1(exch->phone, imethod, arg1, NULL, NULL);
    20102010}
    20112011
     
    20142014{
    20152015        if (exch != NULL)
    2016                 ipc_call_async_2(exch->phone, imethod, arg1, arg2, NULL, NULL,
    2017                     true);
     2016                ipc_call_async_2(exch->phone, imethod, arg1, arg2, NULL, NULL);
    20182017}
    20192018
     
    20232022        if (exch != NULL)
    20242023                ipc_call_async_3(exch->phone, imethod, arg1, arg2, arg3, NULL,
    2025                     NULL, true);
     2024                    NULL);
    20262025}
    20272026
     
    20312030        if (exch != NULL)
    20322031                ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4,
    2033                     NULL, NULL, true);
     2032                    NULL, NULL);
    20342033}
    20352034
     
    20392038        if (exch != NULL)
    20402039                ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4,
    2041                     arg5, NULL, NULL, true);
     2040                    arg5, NULL, NULL);
    20422041}
    20432042
     
    21622161       
    21632162        ipc_call_async_0(exch->phone, IPC_M_CLONE_ESTABLISH, msg,
    2164             reply_received, true);
     2163            reply_received);
    21652164       
    21662165        sysarg_t rc;
     
    22112210       
    22122211        ipc_call_async_4(phone, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, arg4,
    2213             msg, reply_received, true);
     2212            msg, reply_received);
    22142213       
    22152214        sysarg_t rc;
Note: See TracChangeset for help on using the changeset viewer.