summaryrefslogtreecommitdiff
path: root/src/i_signaler.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-09-20 12:03:14 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-09-20 12:03:14 +0200
commit7668b246fc3cf4a2a3b3ee9b1283ad8a4b12ac4f (patch)
tree37ca9e3928cdd1e3e5c41f6cc694911909e4c08c /src/i_signaler.hpp
parent495a2228cd08a29946f9e9ce2e0721e789203e35 (diff)
ZMQ_POLL option forces fd_signaler to be used in app_thread
Diffstat (limited to 'src/i_signaler.hpp')
-rw-r--r--src/i_signaler.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i_signaler.hpp b/src/i_signaler.hpp
index 729b5b7..a09fe7e 100644
--- a/src/i_signaler.hpp
+++ b/src/i_signaler.hpp
@@ -37,11 +37,11 @@ namespace zmq
// Wait for signal. Returns a set of signals in form of a bitmap.
// Signal with index 0 corresponds to value 1, index 1 to value 2,
// index 2 to value 3 etc.
- uint64_t poll ();
+ virtual uint64_t poll () = 0;
// Same as poll, however, if there is no signal available,
// function returns zero immediately instead of waiting for a signal.
- uint64_t check ();
+ virtual uint64_t check () = 0;
};
}