Skip to content

Commit 2e7b8a7

Browse files
committed
docs
1 parent b310865 commit 2e7b8a7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

include/reactor-cpp/environment.hh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,13 @@ private:
5555

5656
Scheduler scheduler_;
5757
Phase phase_{Phase::Construction};
58-
Tag start_tag_{};
5958

59+
/// Timeout as given in the constructor
6060
const Duration timeout_{};
61+
62+
/// The start tag as determined during startup()
63+
Tag start_tag_{};
64+
/// The timeout tag as determined during startup()
6165
Tag timeout_tag_{};
6266

6367
Graph<BasePort*, ConnectionProperties> graph_{};

lib/scheduler.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ void Scheduler::cleanup_after_tag() {
334334
void Scheduler::next() { // NOLINT
335335
// First, clean up after the last tag.
336336
cleanup_after_tag();
337-
337+
338338
{
339339
std::unique_lock<std::mutex> lock{scheduling_mutex_};
340340

0 commit comments

Comments
 (0)