summaryrefslogtreecommitdiff
path: root/src/monitor.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:01:47 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:01:47 +0900
commit4a7aad06d95701cf232198093ce396dcdbb53e5b (patch)
tree8ced8929e603a179d9434099244dfd782e705d5e /src/monitor.cpp
parent1fc63e4dbcf1438eb571d720f57be68852f820f7 (diff)
ZeroMQ renamed to Crossroads
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/monitor.cpp')
-rw-r--r--src/monitor.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/monitor.cpp b/src/monitor.cpp
index 1cccfd0..1937039 100644
--- a/src/monitor.cpp
+++ b/src/monitor.cpp
@@ -2,14 +2,14 @@
Copyright (c) 2012 250bpm s.r.o.
Copyright (c) 2012 Other contributors as noted in the AUTHORS file
- This file is part of 0MQ.
+ This file is part of Crossroads project.
- 0MQ is free software; you can redistribute it and/or modify it under
+ Crossroads is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
- 0MQ is distributed in the hope that it will be useful,
+ Crossroads is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
@@ -24,49 +24,49 @@
#include "random.hpp"
#include "err.hpp"
-zmq::monitor_t::monitor_t (zmq::io_thread_t *io_thread_) :
+xs::monitor_t::monitor_t (xs::io_thread_t *io_thread_) :
own_t (io_thread_, options_t ()),
io_object_t (io_thread_)
{
}
-zmq::monitor_t::~monitor_t ()
+xs::monitor_t::~monitor_t ()
{
}
-void zmq::monitor_t::start ()
+void xs::monitor_t::start ()
{
send_plug (this);
}
-void zmq::monitor_t::stop ()
+void xs::monitor_t::stop ()
{
send_stop ();
}
-void zmq::monitor_t::log (int sid_, const char *text_)
+void xs::monitor_t::log (int sid_, const char *text_)
{
sync.lock ();
text = text_;
sync.unlock ();
}
-void zmq::monitor_t::process_plug ()
+void xs::monitor_t::process_plug ()
{
// Schedule sending of the first snapshot.
add_timer (500 + (generate_random () % 1000), timer_id);
}
-void zmq::monitor_t::process_stop ()
+void xs::monitor_t::process_stop ()
{
cancel_timer (timer_id);
send_done ();
delete this;
}
-void zmq::monitor_t::timer_event (int id_)
+void xs::monitor_t::timer_event (int id_)
{
- zmq_assert (id_ == timer_id);
+ xs_assert (id_ == timer_id);
// Send the snapshot here!
sync.lock ();