From 871b135d91d42df9a70a2ba8c1c52994907b0856 Mon Sep 17 00:00:00 2001 From: Dinko Korunic Date: Sun, 22 Sep 2024 23:07:32 +0200 Subject: [PATCH] Update comments for termination signals --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 523b2c4..6e0ac61 100644 --- a/src/main.rs +++ b/src/main.rs @@ -47,7 +47,7 @@ cfg_if! { fn main() -> Result<(), Error> { let args = Arc::new(args::Args::parse()); - // Setup SIGINT, SIGTERM and SIGHUP signal handler that will cause calibration to stop + // Setup termination signal (SIGINT, SIGTERM and SIGQUIT) handlers that will cause program to stop let shutdown = Arc::new(AtomicBool::new(false)); let shutdown_scan = shutdown.clone(); interrupt::setup_interrupt_handler(&shutdown)?;