From 499fcb776d691da06ec2da9a0fbadc3cbcf8758f Mon Sep 17 00:00:00 2001 From: Determinant Date: Sun, 18 Nov 2018 17:53:58 -0500 Subject: make logger thread-safe and add tty color --- test/test_queue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_queue.cpp b/test/test_queue.cpp index 5a7b548..41c6f88 100644 --- a/test/test_queue.cpp +++ b/test/test_queue.cpp @@ -26,7 +26,7 @@ void test_mpsc(int nproducers = 16, int nops = 100000, size_t burst_size = 128) salticidae::Event timer(ec, -1, [&ec, &collected, total](int, short) { if (collected.load() == total) ec.stop(); }); - timer.add_with_timeout(1, EV_TIMEOUT | EV_PERSIST); + timer.add_with_timeout(1, 0); ec.dispatch(); }); for (int i = 0; i < nproducers; i++) -- cgit v1.2.3