| 33 | |
| 34 | |
| 35 | static void laction (int i) { |
| 36 | signal(i, SIG_DFL); /* if another SIGINT happens before lstop, |
| 37 | terminate process (default action) */ |
| 38 | lua_sethook(globalL, lstop, LUA_MASKCALL | LUA_MASKRET | LUA_MASKCOUNT, 1); |
| 39 | } |
| 40 | |
| 41 | |
| 42 | static void print_usage (void) { |
nothing calls this directly
no test coverage detected