MCPcopy Create free account
hub / github.com/chyyuu/os_kernel_lab / get_time

Function get_time

os/src/timer.rs:15–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13const MSEC_PER_SEC: usize = 1000;
14
15pub fn get_time() -> usize {
16 time::read()
17}
18
19pub fn get_time_ms() -> usize {
20 time::read() / (CLOCK_FREQ / MSEC_PER_SEC)

Callers 1

set_next_triggerFunction · 0.70

Calls 1

readFunction · 0.85

Tested by

no test coverage detected