Skip to content

Commit 18a1f8f

Browse files
Merge branch 'BehaviorTree:master' into master
2 parents 99ed2b0 + f5e98fd commit 18a1f8f

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

examples/t11_groot_howto.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int main()
120120
// Both formats are compatible with Groot2
121121

122122
// Logging with lightweight serialization
123-
BT::FileLogger2 logger2(tree, "t12_logger2.btlog");
123+
BT::FileLogger2 logger2(tree, "t11_groot_howto.btlog");
124124
BT::MinitraceLogger minilog(tree, "minitrace.json");
125125

126126
while(1)

include/behaviortree_cpp/bt_factory.h

+8-4
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,14 @@ class Tree
118118

119119
[[nodiscard]] TreeNode* rootNode() const;
120120

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);
125129

126130
~Tree();
127131

src/bt_factory.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,10 @@ TreeNode* Tree::rootNode() const
633633
return subtree_nodes.empty() ? nullptr : subtree_nodes.front().get();
634634
}
635635

636-
void Tree::sleep(std::chrono::system_clock::duration timeout)
636+
bool Tree::sleep(std::chrono::system_clock::duration timeout)
637637
{
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));
639640
}
640641

641642
Tree::~Tree()

0 commit comments

Comments
 (0)