| 92 | |
| 93 | |
| 94 | static void lstop (lua_State *L, lua_Debug *ar) { |
| 95 | (void)ar; /* unused arg. */ |
| 96 | lua_sethook(L, NULL, 0, 0); |
| 97 | luaL_error(L, "interrupted!"); |
| 98 | } |
| 99 | |
| 100 | |
| 101 | static void laction (int i) { |
nothing calls this directly
no test coverage detected