2022-04-11 17:23:11 -05:00
|
|
|
//! The ableOS kernel.
|
|
|
|
|
2022-02-28 08:54:41 -06:00
|
|
|
#![deny(missing_docs)]
|
|
|
|
#![no_std]
|
2022-03-11 13:51:47 -06:00
|
|
|
#![feature(prelude_import)]
|
2022-04-12 18:17:48 -05:00
|
|
|
#![feature(arbitrary_enum_discriminant)]
|
2022-03-11 13:51:47 -06:00
|
|
|
|
2022-03-02 08:38:22 -06:00
|
|
|
pub mod device_interface;
|
2022-02-28 08:54:41 -06:00
|
|
|
pub mod messaging;
|
|
|
|
pub mod panic;
|
2022-03-02 08:38:22 -06:00
|
|
|
pub mod proccess;
|
2022-03-16 05:39:01 -05:00
|
|
|
pub mod syscalls;
|
2022-03-02 08:38:22 -06:00
|
|
|
pub mod time;
|
2022-02-28 08:54:41 -06:00
|
|
|
|
|
|
|
use core::sync::atomic::{AtomicU64, Ordering::Relaxed};
|
2022-03-02 08:38:22 -06:00
|
|
|
use versioning::Version;
|
|
|
|
|
2022-04-11 15:51:54 -05:00
|
|
|
/// The number of ticks since the first CPU was started
|
|
|
|
pub static TICK: AtomicU64 = AtomicU64::new(0);
|
2022-03-02 08:38:22 -06:00
|
|
|
|
2022-04-11 17:23:11 -05:00
|
|
|
/// Kernel's version
|
2022-03-02 08:38:22 -06:00
|
|
|
pub const KERNEL_VERSION: Version = Version {
|
|
|
|
major: 0,
|
|
|
|
minor: 1,
|
|
|
|
patch: 2,
|
|
|
|
};
|
2022-04-11 17:23:11 -05:00
|
|
|
|
|
|
|
/// called by arch specific timers to tick up all kernel related functions
|
|
|
|
pub fn tick() {
|
|
|
|
let mut data = TICK.load(Relaxed);
|
|
|
|
data = data.wrapping_add(1);
|
|
|
|
|
|
|
|
TICK.store(data, Relaxed)
|
|
|
|
}
|