Changeset c8afd5a in mainline
- Timestamp:
- 2018-05-31T16:22:15Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04051b8e
- Parents:
- 49a796f1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/server.c
r49a796f1 rc8afd5a 125 125 126 126 /** Number of threads waiting for IPC in the kernel. */ 127 atomic_t threads_in_ipc_wait = { 0 };127 static atomic_t threads_in_ipc_wait = { 0 }; 128 128 129 129 /** Call data */ … … 1273 1273 void async_poke(void) 1274 1274 { 1275 ipc_poke(); 1275 if (atomic_get(&threads_in_ipc_wait) > 0) 1276 ipc_poke(); 1276 1277 } 1277 1278
Note:
See TracChangeset
for help on using the changeset viewer.