Subversion Repositories HelenOS-historic

Rev

Rev 1040 | Rev 1060 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1040 Rev 1050
Line 35... Line 35...
35
 
35
 
36
/** Maximum active async calls per thread */
36
/** Maximum active async calls per thread */
37
#define IPC_MAX_ASYNC_CALLS  4
37
#define IPC_MAX_ASYNC_CALLS  4
38
 
38
 
39
/* Flags for calls */
39
/* Flags for calls */
40
#define IPC_CALL_ANSWERED      1 /**< This is answer to a call */
40
#define IPC_CALL_ANSWERED      0x1 /**< This is answer to a call */
41
#define IPC_CALL_STATIC_ALLOC  2 /**< This call will not be freed on error */
41
#define IPC_CALL_STATIC_ALLOC  0x2 /**< This call will not be freed on error */
-
 
42
#define IPC_CALL_DISPATCHED    0x4 /**< Call is in dispatch queue */
42
 
43
 
43
/* Flags for ipc_wait_for_call */
44
/* Flags for ipc_wait_for_call */
44
#define IPC_WAIT_NONBLOCKING   1
45
#define IPC_WAIT_NONBLOCKING   1
45
 
46
 
46
/* Flags of callid */
47
/* Flags of callid */