We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58238c7 commit 9dcd60aCopy full SHA for 9dcd60a
2 files changed
src/backend/linux_raw/mod.rs
@@ -18,9 +18,9 @@
18
mod arch;
19
mod conv;
20
mod reg;
21
-#[cfg(any(feature = "time", target_arch = "x86"))]
+#[cfg(any(feature = "time", feature = "process", target_arch = "x86"))]
22
mod vdso;
23
24
mod vdso_wrappers;
25
26
#[cfg(feature = "event")]
src/backend/linux_raw/vdso_wrappers.rs
@@ -29,7 +29,7 @@ use core::sync::atomic::Ordering::Relaxed;
29
#[cfg(target_pointer_width = "32")]
30
#[cfg(feature = "time")]
31
use linux_raw_sys::general::timespec as __kernel_old_timespec;
32
-#[cfg(feature = "time")]
+#[cfg(any(feature = "time", feature = "process"))]
33
use {
34
super::c,
35
super::conv::{c_int, ret},
0 commit comments