Changeset bc73be3 in mainline for kernel/generic/src/ipc/event.c
- Timestamp:
- 2019-06-27T08:51:20Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8add15e0
- Parents:
- ad40b74b (diff), aeba767 (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
-
kernel/generic/src/ipc/event.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/event.c
rad40b74b rbc73be3 153 153 call->priv = ++event->counter; 154 154 155 IPC_SET_IMETHOD(call->data, event->imethod);156 IPC_SET_ARG1(call->data, a1);157 IPC_SET_ARG2(call->data, a2);158 IPC_SET_ARG3(call->data, a3);159 IPC_SET_ARG4(call->data, a4);160 IPC_SET_ARG5(call->data, a5);155 ipc_set_imethod(&call->data, event->imethod); 156 ipc_set_arg1(&call->data, a1); 157 ipc_set_arg2(&call->data, a2); 158 ipc_set_arg3(&call->data, a3); 159 ipc_set_arg4(&call->data, a4); 160 ipc_set_arg5(&call->data, a5); 161 161 162 162 call->data.task_id = TASK ? TASK->taskid : 0;
Note:
See TracChangeset
for help on using the changeset viewer.
