| 315 | } |
| 316 | |
| 317 | static void |
| 318 | sig_handler(int signo) |
| 319 | { |
| 320 | printf("Received signal %d, exiting...\n", signo); |
| 321 | channel_monitor_exit(); |
| 322 | channel_manager_exit(); |
| 323 | power_manager_exit(); |
| 324 | |
| 325 | } |
| 326 | |
| 327 | int |
| 328 | main(int argc, char **argv) |
nothing calls this directly
no test coverage detected