Changeset 8ff0bd2 in mainline for kernel/generic/include/ipc
- Timestamp:
- 2011-09-04T11:30:58Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (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. - Location:
- kernel/generic/include/ipc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/event.h
rd2c67e7 r8ff0bd2 36 36 #define KERN_EVENT_H_ 37 37 38 #include < ipc/event_types.h>38 #include <abi/ipc/event.h> 39 39 #include <typedefs.h> 40 40 #include <synch/spinlock.h> 41 41 #include <ipc/ipc.h> 42 42 43 typedef void (*event_callback_t)(void); 43 struct task; 44 45 typedef void (*event_callback_t)(void *); 44 46 45 47 /** Event notification structure. */ … … 61 63 62 64 extern void event_init(void); 65 extern void event_task_init(struct task *); 63 66 extern void event_cleanup_answerbox(answerbox_t *); 64 67 extern void event_set_unmask_callback(event_type_t, event_callback_t); 68 extern void event_task_set_unmask_callback(struct task *, event_task_type_t, 69 event_callback_t); 65 70 66 71 #define event_notify_0(e, m) \ … … 77 82 event_notify((e), (m), (a1), (a2), (a3), (a4), (a5)) 78 83 84 #define event_task_notify_0(t, e, m) \ 85 event_task_notify((t), (e), (m), 0, 0, 0, 0, 0) 86 #define event_task_notify_1(t, e, m, a1) \ 87 event_task_notify((t), (e), (m), (a1), 0, 0, 0, 0) 88 #define event_task_notify_2(t, e, m, a1, a2) \ 89 event_task_notify((t), (e), (m), (a1), (a2), 0, 0, 0) 90 #define event_task_notify_3(t, e, m, a1, a2, a3) \ 91 event_task_notify((t), (e), (m), (a1), (a2), (a3), 0, 0) 92 #define event_task_notify_4(t, e, m, a1, a2, a3, a4) \ 93 event_task_notify((t), (e), (m), (a1), (a2), (a3), (a4), 0) 94 #define event_task_notify_5(t, e, m, a1, a2, a3, a4, a5) \ 95 event_task_notify((t), (e), (m), (a1), (a2), (a3), (a4), (a5)) 96 79 97 extern int event_notify(event_type_t, bool, sysarg_t, sysarg_t, sysarg_t, 80 98 sysarg_t, sysarg_t); 99 extern int event_task_notify(struct task *, event_task_type_t, bool, sysarg_t, sysarg_t, 100 sysarg_t, sysarg_t, sysarg_t); 81 101 82 102 extern sysarg_t sys_event_subscribe(sysarg_t, sysarg_t); -
kernel/generic/include/ipc/ipc.h
rd2c67e7 r8ff0bd2 36 36 #define KERN_IPC_H_ 37 37 38 /** Length of data being transfered with IPC call39 *40 * The uspace may not be able to utilize full length41 *42 */43 #define IPC_CALL_LEN 644 45 /** Maximum active async calls per phone */46 #define IPC_MAX_ASYNC_CALLS 447 48 /* Flags for calls */49 50 /** This is answer to a call */51 #define IPC_CALL_ANSWERED (1 << 0)52 53 /** Answer will not be passed to userspace, will be discarded */54 #define IPC_CALL_DISCARD_ANSWER (1 << 1)55 56 /** Call was forwarded */57 #define IPC_CALL_FORWARDED (1 << 2)58 59 /** Identify connect_me_to answer */60 #define IPC_CALL_CONN_ME_TO (1 << 3)61 62 /** Interrupt notification */63 #define IPC_CALL_NOTIF (1 << 4)64 65 66 /** Bits used in call hashes.67 *68 * The addresses are aligned at least to 4 that is why we can use the 2 least69 * significant bits of the call address.70 *71 */72 73 /** Type of this call is 'answer' */74 #define IPC_CALLID_ANSWERED 175 76 /** Type of this call is 'notification' */77 #define IPC_CALLID_NOTIFICATION 278 79 /* Return values from sys_ipc_call_async(). */80 #define IPC_CALLRET_FATAL -181 #define IPC_CALLRET_TEMPORARY -282 83 84 /* Macros for manipulating calling data */85 #define IPC_SET_RETVAL(data, retval) ((data).args[0] = (retval))86 #define IPC_SET_IMETHOD(data, val) ((data).args[0] = (val))87 #define IPC_SET_ARG1(data, val) ((data).args[1] = (val))88 #define IPC_SET_ARG2(data, val) ((data).args[2] = (val))89 #define IPC_SET_ARG3(data, val) ((data).args[3] = (val))90 #define IPC_SET_ARG4(data, val) ((data).args[4] = (val))91 #define IPC_SET_ARG5(data, val) ((data).args[5] = (val))92 93 #define IPC_GET_IMETHOD(data) ((data).args[0])94 #define IPC_GET_RETVAL(data) ((data).args[0])95 96 #define IPC_GET_ARG1(data) ((data).args[1])97 #define IPC_GET_ARG2(data) ((data).args[2])98 #define IPC_GET_ARG3(data) ((data).args[3])99 #define IPC_GET_ARG4(data) ((data).args[4])100 #define IPC_GET_ARG5(data) ((data).args[5])101 102 /* Forwarding flags. */103 #define IPC_FF_NONE 0104 105 /**106 * The call will be routed as though it was initially sent via the phone used to107 * forward it. This feature is intended to support the situation in which the108 * forwarded call needs to be handled by the same connection fibril as any other109 * calls that were initially sent by the forwarder to the same destination. This110 * flag has no imapct on routing replies.111 *112 */113 #define IPC_FF_ROUTE_FROM_ME (1 << 0)114 115 /* Data transfer flags. */116 #define IPC_XF_NONE 0117 118 /** Restrict the transfer size if necessary. */119 #define IPC_XF_RESTRICT (1 << 0)120 121 /** User-defined IPC methods */122 #define IPC_FIRST_USER_METHOD 1024123 124 #ifdef KERNEL125 126 #define IPC_MAX_PHONES 32127 128 38 #include <synch/spinlock.h> 129 39 #include <synch/mutex.h> 130 40 #include <synch/waitq.h> 41 #include <abi/ipc/ipc.h> 42 #include <abi/proc/task.h> 43 #include <typedefs.h> 44 45 #define IPC_MAX_PHONES 64 131 46 132 47 struct answerbox; … … 166 81 167 82 /** Phones connected to this answerbox. */ 168 li nk_t connected_phones;83 list_t connected_phones; 169 84 /** Received calls. */ 170 li nk_t calls;171 li nk_t dispatched_calls; /* Should be hash table in the future */85 list_t calls; 86 list_t dispatched_calls; /* Should be hash table in the future */ 172 87 173 88 /** Answered calls. */ 174 li nk_t answers;89 list_t answers; 175 90 176 91 IRQ_SPINLOCK_DECLARE(irq_lock); 177 92 178 93 /** Notifications from IRQ handlers. */ 179 li nk_t irq_notifs;94 list_t irq_notifs; 180 95 /** IRQs with notifications to this answerbox. */ 181 li nk_t irq_head;96 list_t irq_list; 182 97 } answerbox_t; 183 98 184 99 typedef struct { 185 100 sysarg_t args[IPC_CALL_LEN]; 186 /** Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME. */ 187 struct task *task; 101 /** 102 * Task which made or forwarded the call with IPC_FF_ROUTE_FROM_ME, 103 * or the task which answered the call. 104 */ 105 task_id_t task_id; 188 106 /** Phone which made or last masqueraded this call. */ 189 107 phone_t *phone; … … 243 161 extern void ipc_backsend_err(phone_t *, call_t *, sysarg_t); 244 162 extern void ipc_answerbox_slam_phones(answerbox_t *, bool); 245 extern void ipc_cleanup_call_list(li nk_t *);163 extern void ipc_cleanup_call_list(list_t *); 246 164 247 165 extern void ipc_print_task(task_id_t); 248 249 #endif /* KERNEL */250 166 251 167 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
