@@ -15,7 +15,7 @@ use super::reg::{ArgReg, RetReg, SyscallNumber, A0, A1, A2, A3, A4, A5, R0};
15
15
use super :: vdso;
16
16
#[ cfg( target_arch = "x86" ) ]
17
17
use core:: arch:: global_asm;
18
- #[ cfg( feature = "process " ) ]
18
+ #[ cfg( feature = "thread " ) ]
19
19
#[ cfg( any(
20
20
target_arch = "x86_64" ,
21
21
target_arch = "x86" ,
@@ -33,7 +33,7 @@ use core::sync::atomic::Ordering::Relaxed;
33
33
use linux_raw_sys:: general:: timespec as __kernel_old_timespec;
34
34
#[ cfg( any(
35
35
all(
36
- feature = "process " ,
36
+ feature = "thread " ,
37
37
any(
38
38
target_arch = "x86_64" ,
39
39
target_arch = "x86" ,
@@ -114,7 +114,7 @@ pub(crate) fn clock_gettime_dynamic(which_clock: DynamicClockId<'_>) -> io::Resu
114
114
}
115
115
}
116
116
117
- #[ cfg( feature = "process " ) ]
117
+ #[ cfg( feature = "thread " ) ]
118
118
#[ cfg( any(
119
119
target_arch = "x86_64" ,
120
120
target_arch = "x86" ,
@@ -266,7 +266,7 @@ pub(super) mod x86_via_vdso {
266
266
#[ cfg( feature = "time" ) ]
267
267
type ClockGettimeType = unsafe extern "C" fn ( c:: c_int , * mut Timespec ) -> c:: c_int ;
268
268
269
- #[ cfg( feature = "process " ) ]
269
+ #[ cfg( feature = "thread " ) ]
270
270
#[ cfg( any(
271
271
target_arch = "x86_64" ,
272
272
target_arch = "x86" ,
@@ -293,7 +293,7 @@ fn init_clock_gettime() -> ClockGettimeType {
293
293
}
294
294
295
295
/// Initialize `GETCPU` and return its value.
296
- #[ cfg( feature = "process " ) ]
296
+ #[ cfg( feature = "thread " ) ]
297
297
#[ cfg( any(
298
298
target_arch = "x86_64" ,
299
299
target_arch = "x86" ,
@@ -324,7 +324,7 @@ fn init_syscall() -> SyscallType {
324
324
struct Function ;
325
325
#[ cfg( feature = "time" ) ]
326
326
static CLOCK_GETTIME : AtomicPtr < Function > = AtomicPtr :: new ( null_mut ( ) ) ;
327
- #[ cfg( feature = "process " ) ]
327
+ #[ cfg( feature = "thread " ) ]
328
328
#[ cfg( any(
329
329
target_arch = "x86_64" ,
330
330
target_arch = "x86" ,
@@ -394,7 +394,7 @@ unsafe fn _rustix_clock_gettime_via_syscall(
394
394
ret ( syscall ! ( __NR_clock_gettime, c_int( clockid) , res) )
395
395
}
396
396
397
- #[ cfg( feature = "process " ) ]
397
+ #[ cfg( feature = "thread " ) ]
398
398
#[ cfg( any(
399
399
target_arch = "x86_64" ,
400
400
target_arch = "x86" ,
@@ -458,7 +458,7 @@ fn minimal_init() {
458
458
. ok ( ) ;
459
459
}
460
460
461
- #[ cfg( feature = "process " ) ]
461
+ #[ cfg( feature = "thread " ) ]
462
462
#[ cfg( any(
463
463
target_arch = "x86_64" ,
464
464
target_arch = "x86" ,
@@ -545,7 +545,7 @@ fn init() {
545
545
}
546
546
}
547
547
548
- #[ cfg( feature = "process " ) ]
548
+ #[ cfg( feature = "thread " ) ]
549
549
#[ cfg( any(
550
550
target_arch = "x86_64" ,
551
551
target_arch = "x86" ,
0 commit comments