Changeset 7f1c620 in mainline for generic/include/ipc/ipc.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/ipc/ipc.h
r991779c5 r7f1c620 165 165 typedef struct phone_s phone_t; 166 166 typedef struct { 167 __nativeargs[IPC_CALL_LEN];167 unative_t args[IPC_CALL_LEN]; 168 168 phone_t *phone; 169 169 }ipc_data_t; … … 215 215 answerbox_t *callerbox; 216 216 217 __nativeprivate; /**< Private data to internal IPC */217 unative_t private; /**< Private data to internal IPC */ 218 218 219 219 ipc_data_t data; /**< Data passed from/to userspace */ … … 221 221 222 222 extern void ipc_init(void); 223 extern call_t * ipc_wait_for_call(answerbox_t *box, __u32usec, int flags);223 extern call_t * ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags); 224 224 extern void ipc_answer(answerbox_t *box, call_t *request); 225 225 extern int ipc_call(phone_t *phone, call_t *call); … … 235 235 void ipc_cleanup(void); 236 236 int ipc_phone_hangup(phone_t *phone); 237 extern void ipc_backsend_err(phone_t *phone, call_t *call, __nativeerr);237 extern void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err); 238 238 extern void ipc_print_task(task_id_t taskid); 239 239
Note:
See TracChangeset
for help on using the changeset viewer.