We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f7dd26 commit 78307c2Copy full SHA for 78307c2
source/FAST/Streamers/Streamer.cpp
@@ -48,17 +48,12 @@ void Streamer::stop() {
48
}
49
50
51
- reportInfo() << "frameadd.." << reportEnd();
52
frameAdded(); // Unblock in execute, if needed
53
- reportInfo() << "done" << reportEnd();
54
// Join thread and reset
55
if(std::this_thread::get_id() != m_thread->get_id()) {
56
// join can't be called from the streaming thread
57
- reportInfo() << "join" << reportEnd();
58
m_thread->join();
59
- reportInfo() << "reset" << reportEnd();
60
m_thread.reset(); // This will destroy existing thread object, and will crash program if it happens inside thread
61
- reportInfo() << "reset done" << reportEnd();
62
} else {
63
m_thread->detach(); // Test
64
0 commit comments