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