forked from AbleOS/ableos
11 lines
266 B
Rust
11 lines
266 B
Rust
//! Time
|
|
|
|
/// An internal structure that is used to keep track of the time
|
|
pub struct Time {
|
|
/// The number of seconds since the kernel was started
|
|
pub seconds: u64,
|
|
|
|
/// The number of nanoseconds since the kernel was started
|
|
pub nanoseconds: u32,
|
|
}
|