File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 18
18
mod arch;
19
19
mod conv;
20
20
mod reg;
21
- #[ cfg( any( feature = "time" , target_arch = "x86" ) ) ]
21
+ #[ cfg( any( feature = "time" , feature = "process" , target_arch = "x86" ) ) ]
22
22
mod vdso;
23
- #[ cfg( any( feature = "time" , target_arch = "x86" ) ) ]
23
+ #[ cfg( any( feature = "time" , feature = "process" , target_arch = "x86" ) ) ]
24
24
mod vdso_wrappers;
25
25
26
26
#[ cfg( feature = "event" ) ]
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use core::sync::atomic::Ordering::Relaxed;
29
29
#[ cfg( target_pointer_width = "32" ) ]
30
30
#[ cfg( feature = "time" ) ]
31
31
use linux_raw_sys:: general:: timespec as __kernel_old_timespec;
32
- #[ cfg( feature = "time" ) ]
32
+ #[ cfg( any ( feature = "time" , feature = "process" ) ) ]
33
33
use {
34
34
super :: c,
35
35
super :: conv:: { c_int, ret} ,
You can’t perform that action at this time.
0 commit comments