1
0
Fork 0
firefox/third_party/rust/tokio/tests/signal_notify_both.rs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
502 B
Rust

#![warn(rust_2018_idioms)]
#![cfg(feature = "full")]
#![cfg(unix)]
mod support {
pub mod signal;
}
use support::signal::send_signal;
use tokio::signal::unix::{signal, SignalKind};
#[tokio::test]
async fn notify_both() {
let kind = SignalKind::user_defined2();
let mut signal1 = signal(kind).expect("failed to create signal1");
let mut signal2 = signal(kind).expect("failed to create signal2");
send_signal(libc::SIGUSR2);
signal1.recv().await;
signal2.recv().await;
}