Changeset 1cb75de in mainline for kernel/generic/src/ipc/ipc.c
- Timestamp:
- 2012-08-14T20:17:12Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9956fad9
- Parents:
- 86939b1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r86939b1 r1cb75de 186 186 } 187 187 188 /* 189 * Remove the call from the sender's active call list. 190 */ 191 spinlock_lock(&call->sender->active_calls_lock); 192 list_remove(&call->ta_link); 193 spinlock_unlock(&call->sender->active_calls_lock); 194 188 195 call->data.task_id = TASK->taskid; 189 196 … … 429 436 list_remove(&request->ab_link); 430 437 atomic_dec(&request->data.phone->active_calls); 431 432 /*433 * Remove the call from this task's active call list.434 */435 spinlock_lock(&TASK->active_calls_lock);436 list_remove(&request->ta_link);437 spinlock_unlock(&TASK->active_calls_lock);438 438 } else if (!list_empty(&box->calls)) { 439 439 /* Count received call */
Note:
See TracChangeset
for help on using the changeset viewer.