0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-14 09:47:56 +08:00

Inproc tests need no I/O threads

Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
Martin Sustrik 2011-07-03 13:44:41 +02:00
parent 7c0c798120
commit da26134aa6
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
int main (int argc, char *argv [])
{
void *ctx = zmq_init (1);
void *ctx = zmq_init (0);
assert (ctx);
void *sb = zmq_socket (ctx, ZMQ_PAIR);

View File

@ -23,7 +23,7 @@
int main (int argc, char *argv [])
{
void *ctx = zmq_init (1);
void *ctx = zmq_init (0);
assert (ctx);
void *sb = zmq_socket (ctx, ZMQ_REP);