Changeset bd5a663 in mainline for generic/include/ipc
- Timestamp:
- 2006-05-17T14:03:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 59477e3
- Parents:
- bdb9ea8
- Location:
- generic/include/ipc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/ipc/ipc.h
rbdb9ea8 rbd5a663 45 45 #define IPC_CALL_CONN_ME_TO (1<<4) /* Identify connect_me_to */ 46 46 #define IPC_CALL_NOTIF (1<<5) /* Interrupt notification */ 47 48 /* Flags for ipc_wait_for_call */49 #define IPC_WAIT_NONBLOCKING 150 47 51 48 /* Flags of callid (the addresses are aligned at least to 4, … … 201 198 202 199 extern void ipc_init(void); 203 extern call_t * ipc_wait_for_call(answerbox_t *box, int flags);200 extern call_t * ipc_wait_for_call(answerbox_t *box, __u32 usec, int nonblocking); 204 201 extern void ipc_answer(answerbox_t *box, call_t *request); 205 202 extern int ipc_call(phone_t *phone, call_t *call); … … 217 214 extern void ipc_backsend_err(phone_t *phone, call_t *call, __native err); 218 215 219 220 216 extern answerbox_t *ipc_phone_0; 221 217 -
generic/include/ipc/sysipc.h
rbdb9ea8 rbd5a663 32 32 #include <ipc/ipc.h> 33 33 #include <ipc/irq.h> 34 #include <arch/types.h> 34 35 35 36 __native sys_ipc_call_sync_fast(__native phoneid, __native method, … … 43 44 __native arg1, __native arg2); 44 45 __native sys_ipc_answer(__native callid, ipc_data_t *data); 45 __native sys_ipc_wait_for_call(ipc_data_t *calldata, __ native flags);46 __native sys_ipc_wait_for_call(ipc_data_t *calldata, __u32 usec, int nonblocking); 46 47 __native sys_ipc_forward_fast(__native callid, __native phoneid, 47 48 __native method, __native arg1);
Note:
See TracChangeset
for help on using the changeset viewer.