summaryrefslogtreecommitdiff
path: root/src/app_thread.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-04-29 17:31:57 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-04-29 17:31:57 +0200
commit37128b7b1aeed9ad2bf6816560b85b5f94dd5bec (patch)
tree41c1147b83feccf5f495f004e3b48952b8756271 /src/app_thread.hpp
parentc193fd146661b39027c5e3fa0776dcdf8c6af5e2 (diff)
fd_signaler_t renamed to signaler_t
Diffstat (limited to 'src/app_thread.hpp')
-rw-r--r--src/app_thread.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app_thread.hpp b/src/app_thread.hpp
index b7572da..2bca757 100644
--- a/src/app_thread.hpp
+++ b/src/app_thread.hpp
@@ -25,7 +25,7 @@
#include "stdint.hpp"
#include "object.hpp"
#include "yarray.hpp"
-#include "fd_signaler.hpp"
+#include "signaler.hpp"
namespace zmq
{
@@ -43,7 +43,7 @@ namespace zmq
void stop ();
// Returns signaler associated with this application thread.
- fd_signaler_t *get_signaler ();
+ signaler_t *get_signaler ();
// Processes commands sent to this thread (if any). If 'block' is
// set to true, returns only after at least one command was processed.
@@ -71,7 +71,7 @@ namespace zmq
sockets_t sockets;
// App thread's signaler object.
- fd_signaler_t signaler;
+ signaler_t signaler;
// Timestamp of when commands were processed the last time.
uint64_t last_processing_time;