Changeset 12ab886 in mainline for kernel/generic/include/ipc/ipc.h
- Timestamp:
- 2008-04-05T11:06:10Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1383356
- Parents:
- 776f2e6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r776f2e6 r12ab886 283 283 284 284 extern void ipc_init(void); 285 extern call_t * ipc_wait_for_call(answerbox_t * box, uint32_t usec, int flags);286 extern void ipc_answer(answerbox_t * box, call_t *request);287 extern int ipc_call(phone_t * phone, call_t *call);288 extern void ipc_call_sync(phone_t * phone, call_t *request);289 extern void ipc_phone_init(phone_t * phone);290 extern void ipc_phone_connect(phone_t * phone, answerbox_t *box);291 extern void ipc_call_free(call_t * call);292 extern call_t * ipc_call_alloc(int flags);293 extern void ipc_answerbox_init(answerbox_t * box);294 extern void ipc_call_static_init(call_t * call);285 extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, int); 286 extern void ipc_answer(answerbox_t *, call_t *); 287 extern int ipc_call(phone_t *, call_t *); 288 extern void ipc_call_sync(phone_t *, call_t *); 289 extern void ipc_phone_init(phone_t *); 290 extern void ipc_phone_connect(phone_t *, answerbox_t *); 291 extern void ipc_call_free(call_t *); 292 extern call_t * ipc_call_alloc(int); 293 extern void ipc_answerbox_init(answerbox_t *, struct task *); 294 extern void ipc_call_static_init(call_t *); 295 295 extern void task_print_list(void); 296 extern int ipc_forward(call_t *call, phone_t *newphone, answerbox_t *oldbox, 297 int mode); 296 extern int ipc_forward(call_t *, phone_t *, answerbox_t *, int); 298 297 extern void ipc_cleanup(void); 299 extern int ipc_phone_hangup(phone_t * phone);300 extern void ipc_backsend_err(phone_t * phone, call_t *call, unative_t err);301 extern void ipc_print_task(task_id_t taskid);298 extern int ipc_phone_hangup(phone_t *); 299 extern void ipc_backsend_err(phone_t *, call_t *, unative_t); 300 extern void ipc_print_task(task_id_t); 302 301 303 302 extern answerbox_t *ipc_phone_0;
Note:
See TracChangeset
for help on using the changeset viewer.