Files
codezero/include/l4/api/ipc.h
Bahadir Balban 93368447f9 Added kernel + libl4 changes for full and extended ipc.
- Short ipc working as normal. Full/extended ipc haven't been tested.
- Added automated compilation and inclusion of test executable in test0.
2009-05-15 19:14:40 +03:00

22 lines
363 B
C

#ifndef __IPC_H__
#define __IPC_H__
#define L4_NILTHREAD -1
#define L4_ANYTHREAD -2
#define L4_IPC_TAG_MR_OFFSET 0
/* Pagefault */
#define L4_IPC_TAG_PFAULT 0
#if defined (__KERNEL__)
/* These are for internally created ipc paths. */
int ipc_send(l4id_t to, int full);
int ipc_sendrecv(l4id_t to, l4id_t from, int full);
#endif
#endif /* __IPC_H__ */