File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ int main()
120
120
// Both formats are compatible with Groot2
121
121
122
122
// Logging with lightweight serialization
123
- BT::FileLogger2 logger2 (tree, " t12_logger2 .btlog" );
123
+ BT::FileLogger2 logger2 (tree, " t11_groot_howto .btlog" );
124
124
BT::MinitraceLogger minilog (tree, " minitrace.json" );
125
125
126
126
while (1 )
Original file line number Diff line number Diff line change @@ -118,10 +118,14 @@ class Tree
118
118
119
119
[[nodiscard]] TreeNode* rootNode () const ;
120
120
121
- // / Sleep for a certain amount of time.
122
- // / This sleep could be interrupted by the method
123
- // / TreeNode::emitWakeUpSignal()
124
- void sleep (std::chrono::system_clock::duration timeout);
121
+ /* *
122
+ * @brief Sleep for a certain amount of time. This sleep could be interrupted by the method TreeNode::emitWakeUpSignal()
123
+ *
124
+ * @param timeout duration of the sleep
125
+ * @return true if the timeout was NOT reached and the signal was received.
126
+ *
127
+ * */
128
+ bool sleep (std::chrono::system_clock::duration timeout);
125
129
126
130
~Tree ();
127
131
Original file line number Diff line number Diff line change @@ -633,9 +633,10 @@ TreeNode* Tree::rootNode() const
633
633
return subtree_nodes.empty () ? nullptr : subtree_nodes.front ().get ();
634
634
}
635
635
636
- void Tree::sleep (std::chrono::system_clock::duration timeout)
636
+ bool Tree::sleep (std::chrono::system_clock::duration timeout)
637
637
{
638
- wake_up_->waitFor (std::chrono::duration_cast<std::chrono::milliseconds>(timeout));
638
+ return wake_up_->waitFor (
639
+ std::chrono::duration_cast<std::chrono::milliseconds>(timeout));
639
640
}
640
641
641
642
Tree::~Tree ()
You can’t perform that action at this time.
0 commit comments