| 504 | |
| 505 | static void interrupt_hook (lua_State *L, lua_Debug *ar); |
| 506 | static void interrupt_init (lua_State *L) |
| 507 | { |
| 508 | lua_sethook(L, interrupt_hook, LUA_MASKCOUNT, 256); |
| 509 | } |
| 510 | |
| 511 | static void interrupt_hook (lua_State *L, lua_Debug *ar) |
| 512 | { |
no test coverage detected