7 lines
148 B
Rust
7 lines
148 B
Rust
use super::TaskContext;
|
|
|
|
global_asm!(include_str!("switch.S"));
|
|
|
|
extern "C" {
|
|
pub fn __switch(current_task_cx: &usize, next_task_cx: &usize);
|
|
}
|