aboutsummaryrefslogtreecommitdiff
path: root/src/universe.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/universe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/universe.cpp b/src/universe.cpp
index 7630e9c..5ee2255 100644
--- a/src/universe.cpp
+++ b/src/universe.cpp
@@ -362,7 +362,7 @@ bool Universe::terminateFreeRunningLanes(lua_Duration const shutdownTimeout_, Ca
362 // if waiting on a linda, they will raise a cancel_error. 362 // if waiting on a linda, they will raise a cancel_error.
363 // if a cancellation hook is desired, it will be installed to try to raise an error 363 // if a cancellation hook is desired, it will be installed to try to raise an error
364 if (_lane->thread.joinable()) { 364 if (_lane->thread.joinable()) {
365 std::ignore = _lane->cancel(op_, 1, std::chrono::steady_clock::now() + 1us, true); 365 std::ignore = _lane->cancel(op_, std::chrono::steady_clock::now() + 1us, WakeLane::Yes, 1);
366 } 366 }
367 _lane = _lane->selfdestruct_next; 367 _lane = _lane->selfdestruct_next;
368 } 368 }