Changeset fd1210a in mainline for kernel/generic/include/ipc/ipc.h
- Timestamp:
- 2009-11-21T10:36:48Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de9460e
- Parents:
- 33adc6ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r33adc6ce rfd1210a 317 317 } call_t; 318 318 319 320 extern answerbox_t *ipc_phone_0; 321 322 319 323 extern void ipc_init(void); 320 extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, int); 321 extern void ipc_answer(answerbox_t *, call_t *); 324 325 extern call_t * ipc_call_alloc(int); 326 extern void ipc_call_free(call_t *); 327 322 328 extern int ipc_call(phone_t *, call_t *); 323 329 extern int ipc_call_sync(phone_t *, call_t *); 330 extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, int); 331 extern int ipc_forward(call_t *, phone_t *, answerbox_t *, int); 332 extern void ipc_answer(answerbox_t *, call_t *); 333 324 334 extern void ipc_phone_init(phone_t *); 325 335 extern void ipc_phone_connect(phone_t *, answerbox_t *); 326 extern void ipc_call_free(call_t *);327 extern call_t * ipc_call_alloc(int); 336 extern int ipc_phone_hangup(phone_t *); 337 328 338 extern void ipc_answerbox_init(answerbox_t *, struct task *); 329 extern void task_print_list(void); 330 extern int ipc_forward(call_t *, phone_t *, answerbox_t *, int); 339 331 340 extern void ipc_cleanup(void); 332 extern int ipc_phone_hangup(phone_t *);333 341 extern void ipc_backsend_err(phone_t *, call_t *, unative_t); 334 extern void ipc_print_task(task_id_t);335 342 extern void ipc_answerbox_slam_phones(answerbox_t *, bool); 336 343 extern void ipc_cleanup_call_list(link_t *); 337 344 338 extern answerbox_t *ipc_phone_0;345 extern void ipc_print_task(task_id_t); 339 346 340 347 #endif
Note:
See TracChangeset
for help on using the changeset viewer.