diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lane.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lane.cpp b/src/lane.cpp index 10060ad..e045d88 100644 --- a/src/lane.cpp +++ b/src/lane.cpp | |||
@@ -813,8 +813,10 @@ static void lane_main(Lane* const lane_) | |||
813 | push_stack_trace(_L, lane_->errorTraceLevel, _rc, 1); // L: retvals|error [trace] | 813 | push_stack_trace(_L, lane_->errorTraceLevel, _rc, 1); // L: retvals|error [trace] |
814 | 814 | ||
815 | DEBUGSPEW_CODE(DebugSpew(lane_->U) << "Lane " << _L << " body: " << GetErrcodeName(_rc) << " (" << (kCancelError.equals(_L, 1) ? "cancelled" : luaG_typename(_L, 1)) << ")" << std::endl); | 815 | DEBUGSPEW_CODE(DebugSpew(lane_->U) << "Lane " << _L << " body: " << GetErrcodeName(_rc) << " (" << (kCancelError.equals(_L, 1) ? "cancelled" : luaG_typename(_L, 1)) << ")" << std::endl); |
816 | // Call finalizers, if the script has set them up. | 816 | // Call finalizers, if the script has set them up. |
817 | LuaError const _rc2{ run_finalizers(_L, lane_->errorTraceLevel, _rc) }; | 817 | // If the lane is not a coroutine, there is only a regular state, so everything is the same whether we use S or L. |
818 | // If the lane is a coroutine, this has to be done from the master state (S), not the thread (L), because we can't lua_pcall in a thread state | ||
819 | LuaError const _rc2{ run_finalizers(lane_->S, lane_->errorTraceLevel, _rc) }; | ||
818 | DEBUGSPEW_CODE(DebugSpew(lane_->U) << "Lane " << _L << " finalizer: " << GetErrcodeName(_rc2) << std::endl); | 820 | DEBUGSPEW_CODE(DebugSpew(lane_->U) << "Lane " << _L << " finalizer: " << GetErrcodeName(_rc2) << std::endl); |
819 | if (_rc2 != LuaError::OK) { // Error within a finalizer! | 821 | if (_rc2 != LuaError::OK) { // Error within a finalizer! |
820 | // the finalizer generated an error, and left its own error message [and stack trace] on the stack | 822 | // the finalizer generated an error, and left its own error message [and stack trace] on the stack |