aboutsummaryrefslogtreecommitdiff
path: root/src/universe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/universe.cpp')
-rw-r--r--src/universe.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/universe.cpp b/src/universe.cpp
index eab5977..ec7d043 100644
--- a/src/universe.cpp
+++ b/src/universe.cpp
@@ -417,9 +417,9 @@ LUAG_FUNC(universe_gc)
417 417
418 // attempt to terminate all lanes with increasingly stronger cancel methods 418 // attempt to terminate all lanes with increasingly stronger cancel methods
419 bool const _allLanesTerminated{ 419 bool const _allLanesTerminated{
420 _U->terminateFreeRunningLanes(_shutdown_timeout, CancelOp::Soft) 420 _U->terminateFreeRunningLanes(_shutdown_timeout, { CancelRequest::Soft, LuaHookMask::None })
421 || _U->terminateFreeRunningLanes(_shutdown_timeout, CancelOp::Hard) 421 || _U->terminateFreeRunningLanes(_shutdown_timeout, { CancelRequest::Hard, LuaHookMask::None })
422 || _U->terminateFreeRunningLanes(_shutdown_timeout, CancelOp::MaskAll) 422 || _U->terminateFreeRunningLanes(_shutdown_timeout, { CancelRequest::Hard, LuaHookMask::All })
423 }; 423 };
424 424
425 // invoke the function installed by lanes.finally() 425 // invoke the function installed by lanes.finally()