You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#![no_std]
|
|
#![no_main]
|
|
|
|
#[macro_use]
|
|
extern crate user_lib;
|
|
|
|
use user_lib::syscall::{sys_get_time, sys_yield};
|
|
|
|
#[no_mangle]
|
|
fn main() -> i32 {
|
|
let current_timer = sys_get_time();
|
|
let wait_for = current_timer + 3000;
|
|
loop {
|
|
|
|
}
|
|
println!("Test sleep OK!");
|
|
0
|
|
}
|