summaryrefslogtreecommitdiff
path: root/src/msg/Pipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/msg/Pipe.h')
-rw-r--r--src/msg/Pipe.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/msg/Pipe.h b/src/msg/Pipe.h
index 5f94305350c..6c91395a352 100644
--- a/src/msg/Pipe.h
+++ b/src/msg/Pipe.h
@@ -234,16 +234,7 @@ class DispatchQueue;
void register_pipe();
void unregister_pipe();
- void join() {
- if (writer_thread.is_started())
- writer_thread.join();
- if (reader_thread.is_started())
- reader_thread.join();
- if (delay_thread) {
- delay_thread->stop();
- delay_thread->join();
- }
- }
+ void join();
void stop();
void _send(Message *m) {