diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2011-03-26 10:38:40 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2011-03-26 10:38:40 +0100 |
commit | abb184a051b592b6d4c99fd3299e78ea7c1da826 (patch) | |
tree | cbbe7a6778c728710dbdb3ba16489db7b0e91202 /include | |
parent | bc4a1ce3345f4e5904e4b13c618f90def21256a5 (diff) |
ZMQ_NOBLOCK renamed ZMQ_DONTWAIT
Done because of POSIX compliance
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/zmq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zmq.h b/include/zmq.h index 4c37c03..01c9d80 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -204,7 +204,7 @@ ZMQ_EXPORT int zmq_term (void *context); #define ZMQ_RCVHWM 24 /* Send/recv options. */ -#define ZMQ_NOBLOCK 1 +#define ZMQ_DONTWAIT 1 #define ZMQ_SNDMORE 2 ZMQ_EXPORT void *zmq_socket (void *context, int type); |