From cb2b7ada631c46d609b7ec419fef855455e568ca Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Thu, 21 Feb 2008 15:50:09 +0000 Subject: [PATCH] Nonblocking send. --- include/minix/ipc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/minix/ipc.h b/include/minix/ipc.h index a34016ce7..1eef6fb1e 100644 --- a/include/minix/ipc.h +++ b/include/minix/ipc.h @@ -138,6 +138,7 @@ typedef struct asynmsg #define sendrec _sendrec #define receive _receive #define send _send +#define sendnb _sendnb #define senda _senda _PROTOTYPE( int echo, (message *m_ptr) ); @@ -145,6 +146,7 @@ _PROTOTYPE( int notify, (endpoint_t dest) ); _PROTOTYPE( int sendrec, (endpoint_t src_dest, message *m_ptr) ); _PROTOTYPE( int receive, (endpoint_t src, message *m_ptr) ); _PROTOTYPE( int send, (endpoint_t dest, message *m_ptr) ); +_PROTOTYPE( int sendnb, (endpoint_t dest, message *m_ptr) ); _PROTOTYPE( int senda, (asynmsg_t *table, size_t count) ); #define ipc_request _ipc_request