]> Zhao Yanbai Git Server - minix.git/commitdiff
Nonblocking send.
authorPhilip Homburg <philip@cs.vu.nl>
Thu, 21 Feb 2008 15:50:09 +0000 (15:50 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Thu, 21 Feb 2008 15:50:09 +0000 (15:50 +0000)
include/minix/ipc.h

index a34016ce760247a5436051e83f5d29f16ecf674b..1eef6fb1e7e284442e423b8ce1db298524c1c750 100644 (file)
@@ -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