thread ID and dispatcher made private in object_t

This commit is contained in:
Martin Sustrik
2010-05-03 16:21:36 +02:00
parent 84e0c7991a
commit 8b9bd05726
3 changed files with 6 additions and 6 deletions

View File

@@ -76,7 +76,7 @@ void zmq::io_thread_t::in_event ()
// Process all the commands from the thread that sent the signal.
command_t cmd;
while (dispatcher->read (signal, thread_slot, &cmd))
while (get_dispatcher ()->read (signal, get_thread_slot (), &cmd))
cmd.destination->process_command (cmd);
}
}