summaryrefslogtreecommitdiff
path: root/libs/pbd/receiver.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-08-14 08:33:23 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-08-14 08:33:23 -0400
commit09ed9c44e7988067796da2febeb7a5edf1282f93 (patch)
tree47173b4e4ea2492a1907f439a678c1683bdcada9 /libs/pbd/receiver.cc
parentf77d1e0a36337f39937a14bec1a8822c4888d359 (diff)
change PBD::Transmitter code to use PBD::Signal<> not sigc::signal<>, since the latter is not thread safe
Diffstat (limited to 'libs/pbd/receiver.cc')
-rw-r--r--libs/pbd/receiver.cc18
1 files changed, 6 insertions, 12 deletions
diff --git a/libs/pbd/receiver.cc b/libs/pbd/receiver.cc
index b0655721ad..689665c84a 100644
--- a/libs/pbd/receiver.cc
+++ b/libs/pbd/receiver.cc
@@ -37,23 +37,17 @@ Receiver::~Receiver ()
void
Receiver::hangup ()
{
- vector<sigc::connection *>::iterator i;
-
- for (i = connections.begin(); i != connections.end (); i++) {
- (*i)->disconnect ();
- delete *i;
- }
-
- connections.erase (connections.begin(), connections.end());
+ connections.drop_connections ();
}
void
Receiver::listen_to (Transmitter &transmitter)
{
- sigc::connection *c = new sigc::connection;
-
- (*c) = transmitter.sender().connect(mem_fun(*this, &Receiver::receive));
+ /* odd syntax here because boost's placeholders (_1, _2) are in an
+ anonymous namespace which causes ambiguity with sigc++ (and will also
+ do so with std::placeholder in the C++11 future
+ */
+ transmitter.sender().connect_same_thread (connections, boost::bind (&Receiver::receive, this, boost::arg<1>(), boost::arg<2>()));
- connections.push_back (c);
}