aboutsummaryrefslogtreecommitdiff
path: root/src/tracker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tracker.cpp')
-rw-r--r--src/tracker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tracker.cpp b/src/tracker.cpp
index d42eb35..618dc37 100644
--- a/src/tracker.cpp
+++ b/src/tracker.cpp
@@ -92,7 +92,7 @@ void LaneTracker::tracking_add(Lane* lane_)
92 while (_lane != TRACKING_END) { 92 while (_lane != TRACKING_END) {
93 // insert a { name='<name>', status='<status>' } tuple, so that several lanes with the same name can't clobber each other 93 // insert a { name='<name>', status='<status>' } tuple, so that several lanes with the same name can't clobber each other
94 lua_createtable(L_, 0, 2); // L_: {} {} 94 lua_createtable(L_, 0, 2); // L_: {} {}
95 std::ignore = lua_pushstringview(L_, _lane->debugName); // L_: {} {} "name" 95 std::ignore = luaG_pushstringview(L_, _lane->debugName); // L_: {} {} "name"
96 lua_setfield(L_, -2, "name"); // L_: {} {} 96 lua_setfield(L_, -2, "name"); // L_: {} {}
97 std::ignore = _lane->pushThreadStatus(L_); // L_: {} {} "status" 97 std::ignore = _lane->pushThreadStatus(L_); // L_: {} {} "status"
98 lua_setfield(L_, -2, "status"); // L_: {} {} 98 lua_setfield(L_, -2, "status"); // L_: {} {}