Support wait_interruptible with SigQueueObserver

This commit is contained in:
Jianfeng Jiang
2023-09-26 17:14:21 +08:00
committed by Tate, Hongliang Tian
parent ec857e5205
commit d2aa06cbe2
9 changed files with 270 additions and 68 deletions

View File

@ -1,5 +1,6 @@
pub mod c_types;
pub mod constants;
mod events;
pub mod sig_action;
pub mod sig_disposition;
pub mod sig_mask;
@ -7,6 +8,8 @@ pub mod sig_num;
pub mod sig_queues;
pub mod signals;
pub use events::{SigEvents, SigEventsFilter, SigQueueObserver};
use core::mem;
use align_ext::AlignExt;