No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann dd254e3f09
Releasing fastforward version 3.5.2-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-07-31 04:59:43 +02:00
.github/workflows Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00
debian Releasing fastforward version 3.5.2-1~ffwd13+u1. 2026-07-31 04:59:43 +02:00
examples Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00
src Merging upstream version 3.5.2. 2026-07-31 04:58:05 +02:00
tests/main Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00
.cargo_vcs_info.json Merging upstream version 3.5.2. 2026-07-31 04:58:05 +02:00
.gitignore Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00
Cargo.lock Merging upstream version 3.5.2. 2026-07-31 04:58:05 +02:00
Cargo.toml Merging upstream version 3.5.2. 2026-07-31 04:58:05 +02:00
Cargo.toml.orig Merging upstream version 3.5.2. 2026-07-31 04:58:05 +02:00
LICENSE-APACHE Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00
LICENSE-MIT Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00
README.md Adding upstream version 3.5.0. 2026-07-20 12:13:44 +02:00

CtrlC

A simple easy to use wrapper around Ctrl-C signal.

Documentation

Example usage

In cargo.toml:

[dependencies]
ctrlc = "3.5"

then, in main.rs

use std::sync::mpsc::channel;
use ctrlc;

fn main() {
    let (tx, rx) = channel();
    
    ctrlc::set_handler(move || tx.send(()).expect("Could not send signal on channel."))
        .expect("Error setting Ctrl-C handler");
    
    println!("Waiting for Ctrl-C...");
    rx.recv().expect("Could not receive from channel.");
    println!("Got it! Exiting..."); 
}

Try the example yourself

cargo build --examples && target/debug/examples/readme_example

Handling SIGTERM and SIGHUP

Add CtrlC to Cargo.toml using termination feature and CtrlC will handle SIGINT, SIGTERM and SIGHUP.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Similar crates

There are alternatives that give you more control over the different signals and/or add async support.