Changes in kernel/generic/src/ipc/sysipc.c [036e97c:acf6b55] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc.c
r036e97c racf6b55 341 341 static int check_call_limit(phone_t *phone) 342 342 { 343 if (atomic_ load(&phone->active_calls) >= IPC_MAX_ASYNC_CALLS)343 if (atomic_get(&phone->active_calls) >= IPC_MAX_ASYNC_CALLS) 344 344 return -1; 345 345
Note:
See TracChangeset
for help on using the changeset viewer.