Changeset 119c335 in mainline for kernel/generic/src/ipc/sysipc.c
- Timestamp:
- 2008-09-25T18:17:00Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e436cfe
- Parents:
- 0993087
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc.c
r0993087 r119c335 823 823 ASSERT(! (call->flags & IPC_CALL_STATIC_ALLOC)); 824 824 825 if (!(call->flags & IPC_CALL_DISCARD_ANSWER))826 atomic_dec(&TASK->active_calls);827 828 825 if (call->flags & IPC_CALL_DISCARD_ANSWER) { 829 826 ipc_call_free(call); 830 827 goto restart; 828 } else { 829 /* 830 * Decrement the counter of active calls only if the 831 * call is not an answer to IPC_M_PHONE_HUNGUP, 832 * which doesn't contribute to the counter. 833 */ 834 atomic_dec(&TASK->active_calls); 831 835 } 832 836
Note:
See TracChangeset
for help on using the changeset viewer.