1 2 3 4 5 6 7 8 9
use super::types::*; #[repr(C)] pub struct tms_t { pub tms_utime: clock_t, pub tms_stime: clock_t, pub tms_cutime: clock_t, pub tms_cstime: clock_t, }
1 2 3 4 5 6 7 8 9
use super::types::*; #[repr(C)] pub struct tms_t { pub tms_utime: clock_t, pub tms_stime: clock_t, pub tms_cutime: clock_t, pub tms_cstime: clock_t, }