Fork

Type Alias Fork 

Source
pub type Fork = Exit;
Expand description

FORK records indicate that a process called fork(2) successfully.

This struct corresponds to PERF_RECORD_FORK. See the manpage for more documentation.

Aliased Type§

pub struct Fork {
    pub pid: u32,
    pub ppid: u32,
    pub tid: u32,
    pub ptid: u32,
    pub time: u64,
}

Fields§

§pid: u32§ppid: u32§tid: u32§ptid: u32§time: u64