| 26 | |
| 27 | |
| 28 | static void lstop (lua_State *L, lua_Debug *ar) { |
| 29 | (void)ar; /* unused arg. */ |
| 30 | lua_sethook(L, NULL, 0, 0); |
| 31 | luaL_error(L, "interrupted!"); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | static void laction (int i) { |
nothing calls this directly
no test coverage detected