Changes in kernel/generic/include/ipc/ipc.h [cd529c4:4e5dabf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
rcd529c4 r4e5dabf 77 77 waitq_t wq; 78 78 79 /** Linkage for the list of task's synchronous answerboxes. */ 80 link_t sync_box_link; 81 79 82 /** Phones connected to this answerbox. */ 80 83 list_t connected_phones; … … 113 116 struct task *sender; 114 117 118 /* 119 * The caller box is different from sender->answerbox 120 * for synchronous calls. 121 */ 122 answerbox_t *callerbox; 123 115 124 /** Private data to internal IPC. */ 116 125 sysarg_t priv; … … 138 147 139 148 extern int ipc_call(phone_t *, call_t *); 149 extern int ipc_call_sync(phone_t *, call_t *); 140 150 extern call_t *ipc_wait_for_call(answerbox_t *, uint32_t, unsigned int); 141 151 extern int ipc_forward(call_t *, phone_t *, answerbox_t *, unsigned int);
Note:
See TracChangeset
for help on using the changeset viewer.