Home
last modified time | relevance | path

Searched refs:ALARM_CALLED (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/nix/test/
Dtest_timer.rs13 static ALARM_CALLED: AtomicBool = AtomicBool::new(false); variable
18 ALARM_CALLED.store(true, Ordering::Release); in handle_sigalarm()
81 if ALARM_CALLED.load(Ordering::Acquire) { in alarm_fires()
Dtest_unistd.rs797 static mut ALARM_CALLED: bool = false; constant
808 unsafe { ALARM_CALLED = true }; in alarm_signal_handler()
841 if unsafe { ALARM_CALLED } { in test_alarm()