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