Changeset dcc150cb in mainline for uspace/lib/c/generic/async.c
- Timestamp:
- 2016-05-23T11:18:33Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f570cdf
- Parents:
- f6017ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
rf6017ee rdcc150cb 1674 1674 1675 1675 ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4, msg, 1676 reply_received , true);1676 reply_received); 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 , true);1714 msg, reply_received); 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 , true);2003 ipc_call_async_0(exch->phone, imethod, NULL, NULL); 2004 2004 } 2005 2005 … … 2007 2007 { 2008 2008 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); 2010 2010 } 2011 2011 … … 2014 2014 { 2015 2015 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); 2018 2017 } 2019 2018 … … 2023 2022 if (exch != NULL) 2024 2023 ipc_call_async_3(exch->phone, imethod, arg1, arg2, arg3, NULL, 2025 NULL , true);2024 NULL); 2026 2025 } 2027 2026 … … 2031 2030 if (exch != NULL) 2032 2031 ipc_call_async_4(exch->phone, imethod, arg1, arg2, arg3, arg4, 2033 NULL, NULL , true);2032 NULL, NULL); 2034 2033 } 2035 2034 … … 2039 2038 if (exch != NULL) 2040 2039 ipc_call_async_5(exch->phone, imethod, arg1, arg2, arg3, arg4, 2041 arg5, NULL, NULL , true);2040 arg5, NULL, NULL); 2042 2041 } 2043 2042 … … 2162 2161 2163 2162 ipc_call_async_0(exch->phone, IPC_M_CLONE_ESTABLISH, msg, 2164 reply_received , true);2163 reply_received); 2165 2164 2166 2165 sysarg_t rc; … … 2211 2210 2212 2211 ipc_call_async_4(phone, IPC_M_CONNECT_ME_TO, arg1, arg2, arg3, arg4, 2213 msg, reply_received , true);2212 msg, reply_received); 2214 2213 2215 2214 sysarg_t rc;
Note:
See TracChangeset
for help on using the changeset viewer.