Changes in uspace/lib/c/generic/async.c [dcc150cb:9ef495f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
rdcc150cb r9ef495f 1674 1674 1675 1675 ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4, msg, 1676 reply_received );1676 reply_received, true); 1677 1677 1678 1678 return (aid_t) msg; … … 1712 1712 1713 1713 ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4, arg5, 1714 msg, reply_received );1714 msg, reply_received, true); 1715 1715 1716 1716 return (aid_t) msg; … … 2001 2001 { 2002 2002 if (exch != NULL) 2003 ipc_call_async_0(exch->phone, imethod, NULL, NULL );2003 ipc_call_async_0(exch->phone, imethod, NULL, NULL, true); 2004 2004 } 2005 2005 … … 2007 2007 { 2008 2008 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); 2010 2010 } 2011 2011 … … 2014 2014 { 2015 2015 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); 2017 2018 } 2018 2019 … … 2022 2023 if (exch != NULL) 2023 2024 ipc_call_async_3(exch->phone, imethod, arg1, arg2, arg3, NULL, 2024 NULL );2025 NULL, true); 2025 2026 } 2026 2027 … … 2030 2031 if (exch != NULL) 2031 2032 ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4, 2032 NULL, NULL );2033 NULL, NULL, true); 2033 2034 } 2034 2035 … … 2038 2039 if (exch != NULL) 2039 2040 ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4, 2040 arg5, NULL, NULL );2041 arg5, NULL, NULL, true); 2041 2042 } 2042 2043 … … 2161 2162 2162 2163 ipc_call_async_0(exch->phone, IPC_M_CLONE_ESTABLISH, msg, 2163 reply_received );2164 reply_received, true); 2164 2165 2165 2166 sysarg_t rc; … … 2210 2211 2211 2212 ipc_call_async_4(phone, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, arg4, 2212 msg, reply_received );2213 msg, reply_received, true); 2213 2214 2214 2215 sysarg_t rc;
Note:
See TracChangeset
for help on using the changeset viewer.