11 lines
228 B
Rust
11 lines
228 B
Rust
use super::TaskContext;
|
|
use core::arch::global_asm;
|
|
|
|
global_asm!(include_str!("switch.S"));
|
|
|
|
extern "C" {
|
|
pub fn __switch(
|
|
current_task_cx_ptr: *mut TaskContext,
|
|
next_task_cx_ptr: *const TaskContext
|
|
);
|
|
}
|