@@ -33,27 +33,27 @@ pub(crate) unsafe fn wait_for_event() {
33
33
asm:: wfe ( ) ;
34
34
}
35
35
36
- #[ cfg( target_arch = "riscv32" ) ]
36
+ #[ cfg( any ( target_arch = "riscv32" , target_arch = "riscv64" ) ) ]
37
37
/// This keeps dropping into the debugger and never returns
38
38
pub fn abort ( ) -> ! {
39
39
loop {
40
40
unsafe { riscv:: asm:: ebreak ( ) }
41
41
}
42
42
}
43
43
44
- #[ cfg( all( target_arch = "riscv32" , feature = "riscv-wait-nop" ) ) ]
44
+ #[ cfg( all( any ( target_arch = "riscv32" , target_arch = "riscv64" ) , feature = "riscv-wait-nop" ) ) ]
45
45
#[ inline]
46
46
/// Prevent next `wait_for_interrupt` from sleeping, wake up other harts if needed.
47
47
/// This particular implementation does nothing, since `wait_for_interrupt` never sleeps
48
48
pub ( crate ) unsafe fn signal_event_ready ( ) { }
49
49
50
- #[ cfg( all( target_arch = "riscv32" , feature = "riscv-wait-nop" ) ) ]
50
+ #[ cfg( all( any ( target_arch = "riscv32" , target_arch = "riscv64" ) , feature = "riscv-wait-nop" ) ) ]
51
51
#[ inline]
52
52
/// Wait for an interrupt or until notified by other hart via `signal_task_ready`
53
53
/// This particular implementation does nothing
54
54
pub ( crate ) unsafe fn wait_for_event ( ) { }
55
55
56
- #[ cfg( all( target_arch = "riscv32" , feature = "riscv-wait-extern" ) ) ]
56
+ #[ cfg( all( any ( target_arch = "riscv32" , target_arch = "riscv64" ) , feature = "riscv-wait-extern" ) ) ]
57
57
extern "C" {
58
58
/// Prevent next `wait_for_interrupt` from sleeping, wake up other harts if needed.
59
59
/// User is expected to provide an actual implementation, like the one shown below.
@@ -74,10 +74,10 @@ extern "C" {
74
74
pub ( crate ) fn wait_for_event ( ) ;
75
75
}
76
76
77
- #[ cfg( all( target_arch = "riscv32" , feature = "riscv-wait-wfi-single-hart" ) ) ]
77
+ #[ cfg( all( any ( target_arch = "riscv32" , target_arch = "riscv64" ) , feature = "riscv-wait-wfi-single-hart" ) ) ]
78
78
static mut TASK_READY : bool = false ;
79
79
80
- #[ cfg( all( target_arch = "riscv32" , feature = "riscv-wait-wfi-single-hart" ) ) ]
80
+ #[ cfg( all( any ( target_arch = "riscv32" , target_arch = "riscv64" ) , feature = "riscv-wait-wfi-single-hart" ) ) ]
81
81
#[ inline]
82
82
/// Prevent next `wait_for_interrupt` from sleeping, wake up other harts if needed.
83
83
/// This particular implementation prevents `wait_for_interrupt` from sleeping by setting
@@ -86,7 +86,7 @@ pub(crate) unsafe fn signal_event_ready() {
86
86
TASK_READY = true ;
87
87
}
88
88
89
- #[ cfg( all( target_arch = "riscv32" , feature = "riscv-wait-wfi-single-hart" ) ) ]
89
+ #[ cfg( all( any ( target_arch = "riscv32" , target_arch = "riscv64" ) , feature = "riscv-wait-wfi-single-hart" ) ) ]
90
90
#[ inline]
91
91
/// Wait for an interrupt or until notified by other hart via `signal_task_ready`
92
92
/// This particular implementation decides whether to sleep or not by checking
0 commit comments