Changeset 6769005 in mainline for kernel/generic/include/ipc/ipc.h
- Timestamp:
- 2018-10-31T06:03:38Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53ee7a0
- Parents:
- 94ab1fe
- git-author:
- Jakub Jermar <jakub@…> (2018-10-28 12:42:35)
- git-committer:
- Jakub Jermar <jakub@…> (2018-10-31 06:03:38)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r94ab1fe r6769005 69 69 ipc_phone_state_t state; 70 70 atomic_t active_calls; 71 /** User-defined label */ 72 sysarg_t label; 71 73 kobject_t *kobject; 72 74 } phone_t; … … 101 103 list_t irq_notifs; 102 104 } answerbox_t; 103 104 typedef struct {105 sysarg_t args[IPC_CALL_LEN];106 /**107 * Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME,108 * or the task which answered the call.109 */110 task_id_t task_id;111 /** Phone which made or last masqueraded this call. */112 phone_t *phone;113 /** Flags */114 unsigned flags;115 /** User-defined label */116 sysarg_t label;117 /** Capability handle */118 cap_call_handle_t cap_handle;119 } ipc_data_t;120 105 121 106 typedef struct call {
Note:
See TracChangeset
for help on using the changeset viewer.