extern struct notif [src]
Fields
id: u64Unique notification cookie for each filter.
pid: u32ID of the thread that triggered the notification.
flags: u32Bitmask for event information. Currently set to zero.
data: dataThe current system call data.
Source
pub const notif = extern struct {
/// Unique notification cookie for each filter.
id: u64,
/// ID of the thread that triggered the notification.
pid: u32,
/// Bitmask for event information. Currently set to zero.
flags: u32,
/// The current system call data.
data: data,
}