Sha256: 40841939a9f37c594f38dade2814777a02c75ed292c1334864feb139e2740bce
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
zmq_init(3) =========== NAME ---- zmq_init - initialise 0MQ context SYNOPSIS -------- *void *zmq_init (int 'io_threads');* DESCRIPTION ----------- The _zmq_init()_ function initialises a 0MQ 'context'. The 'io_threads' argument specifies the size of the 0MQ thread pool to handle I/O operations. If your application is using only the 'inproc' transport for messaging you may set this to zero, otherwise set it to at least one. .Thread safety A 0MQ 'context' is thread safe and may be shared among as many application threads as necessary, without any additional locking required on the part of the caller. RETURN VALUE ------------ The _zmq_init()_ function shall return an opaque handle to the initialised 'context' if successful. Otherwise it shall return NULL and set 'errno' to one of the values defined below. ERRORS ------ *EINVAL*:: An invalid number of 'io_threads' was requested. SEE ALSO -------- linkzmq:zmq[7] linkzmq:zmq_term[3] AUTHORS ------- This 0MQ manual page was written by Martin Sustrik <sustrik@250bpm.com> and Martin Lucina <mato@kotelna.sk>.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libzmq-0.2.0 | libzmq/zeromq-2.1.9/doc/zmq_init.txt |
libzmq-0.0.1 | libzmq/zeromq-2.1.7/doc/zmq_init.txt |