Changes in kernel/generic/include/ipc/ipc.h [c0699467:ab34cc9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
rc0699467 rab34cc9 40 40 #include <synch/mutex.h> 41 41 #include <synch/waitq.h> 42 #include <typedefs.h> 42 43 43 44 #define IPC_MAX_PHONES 32 … … 97 98 typedef struct { 98 99 sysarg_t args[IPC_CALL_LEN]; 99 /** Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME. */ 100 struct task *task; 100 /** 101 * Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME, 102 * or the task which answered the call. 103 */ 104 task_id_t task_id; 101 105 /** Phone which made or last masqueraded this call. */ 102 106 phone_t *phone;
Note:
See TracChangeset
for help on using the changeset viewer.