summaryrefslogtreecommitdiff
path: root/src/app_thread.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/app_thread.hpp
parent495a2228cd08a29946f9e9ce2e0721e789203e35 (diff)
ZMQ_POLL option forces fd_signaler to be used in app_thread
Diffstat (limited to 'src/app_thread.hpp')
-rw-r--r--src/app_thread.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/app_thread.hpp b/src/app_thread.hpp
index 5fdb92d..4fe67fb 100644
--- a/src/app_thread.hpp
+++ b/src/app_thread.hpp
@@ -24,7 +24,6 @@
#include "stdint.hpp"
#include "object.hpp"
-#include "ypollset.hpp"
#include "thread.hpp"
namespace zmq
@@ -40,7 +39,7 @@ namespace zmq
~app_thread_t ();
// Returns signaler associated with this application thread.
- i_signaler *get_signaler ();
+ struct i_signaler *get_signaler ();
// Nota bene: Following two functions are accessed from different
// threads. The caller (dispatcher) is responsible for synchronisation
@@ -79,7 +78,7 @@ namespace zmq
thread_t::id_t tid;
// App thread's signaler object.
- ypollset_t pollset;
+ struct i_signaler *signaler;
// Timestamp of when commands were processed the last time.
uint64_t last_processing_time;