()
| 7 | |
| 8 | #[no_mangle] |
| 9 | fn main() { |
| 10 | loop { |
| 11 | let _ = syscalls::receive(&STDIN); |
| 12 | debug_println!("[timing_test] TSC: {} microseconds: {}", |
| 13 | time::time_stamp_counter(), |
| 14 | time::microseconds_monotonic()); |
| 15 | syscalls::thread_yield(); |
| 16 | } |
| 17 | } |
nothing calls this directly
no test coverage detected