Changeset fc10e1b in mainline for kernel/generic/src/ipc/sysipc.c
- Timestamp:
- 2018-09-07T16:34:11Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d2c91ab
- Parents:
- 508b0df1 (diff), e90cfa6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc.c
r508b0df1 rfc10e1b 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.