| 59 | #include <signal.h> |
| 60 | |
| 61 | void signal_handler(int sig) |
| 62 | { |
| 63 | std::cout << "Keyboard Interrupt (Ctrl+C Received)" << std::endl; |
| 64 | cs::current_process->raise_sigint(); |
| 65 | } |
| 66 | |
| 67 | void activate_sigint_handler() |
| 68 | { |
nothing calls this directly
no test coverage detected