Skip to content

Commit

Permalink
Update comments for termination signals
Browse files Browse the repository at this point in the history
  • Loading branch information
dkorunic committed Sep 22, 2024
1 parent 1cef833 commit 871b135
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)?;
Expand Down

0 comments on commit 871b135

Please sign in to comment.