| 219 | } |
| 220 | |
| 221 | static int lua_thread_id(lua_State* L) { |
| 222 | lua_pushinteger(L, (lua_Integer)get_thread_id()); |
| 223 | return 1; |
| 224 | } |
| 225 | |
| 226 | void lua_register_thread(lua_State* L) { |
| 227 | lua_newtable(L); |
nothing calls this directly
no test coverage detected