#sigint #signal #signal-handler

signalbool

A simple crate to catch signals and set a boolean flag for later use

11 releases

0.2.5 Jun 21, 2022
0.2.4 Jul 9, 2020
0.2.3 Jun 28, 2019
0.2.2 Aug 8, 2018
0.1.3 May 30, 2017

#2 in #signal-handler

Download history 28/week @ 2025-01-22 15/week @ 2025-01-29 22/week @ 2025-02-05 49/week @ 2025-02-12 10/week @ 2025-02-19 19/week @ 2025-02-26 7/week @ 2025-03-05 13/week @ 2025-03-12 2/week @ 2025-03-19 6/week @ 2025-03-26 8/week @ 2025-04-09 28/week @ 2025-04-16 15/week @ 2025-04-23 3/week @ 2025-04-30 7/week @ 2025-05-07

54 downloads per month
Used in 2 crates

BSD-3-Clause

8KB
90 lines

A simple crate to catch signals and set a boolean flag for later use.

This crate doesn't create threads behind the scene.

Crates.io Version GitHub stars

Example

Here is a program that sleeps until it receives three SIGINT signals.

extern crate signalbool;
extern crate nix;

use nix::unistd::sleep;

fn main() {
  let mut sb = signalbool::SignalBool::new(
    &[signalbool::Signal::SIGINT], signalbool::Flag::Interrupt,
  ).unwrap();
  let mut count = 0;
    
  loop {
    sleep(10);
    if sb.caught() {
      println!("Caught SIGINT.");
      count += 1;
      sb.reset();
      if count == 3 {
        break;
      }
    }
  }
}

Dependencies

~2MB
~39K SLoC