ableos/kernel/src/lib.rs

68 lines
1.4 KiB
Rust
Raw Normal View History

2022-04-11 22:23:11 +00:00
//! The ableOS kernel.
//! Named akern.
//! Akern is woefully undersupported at the moment but we are looking to add support improve hardware discovery and make our lives as kernel and operating system developers easier and better
2022-04-11 22:23:11 +00:00
2023-05-23 10:16:14 +00:00
#![no_std]
2023-03-30 21:43:04 +00:00
#![feature(
abi_x86_interrupt,
alloc_error_handler,
inline_const,
panic_info_message,
pointer_is_aligned,
prelude_import,
2023-05-23 10:16:14 +00:00
ptr_sub_ptr,
custom_test_frameworks
2023-03-30 21:43:04 +00:00
)]
2023-06-16 10:20:37 +00:00
#![deny(clippy::pedantic, missing_docs, warnings)]
2023-05-23 10:16:14 +00:00
#![allow(dead_code)]
2023-05-15 07:19:34 +00:00
#![test_runner(crate::test_runner)]
2022-05-07 12:08:34 +00:00
extern crate alloc;
2023-03-30 21:43:04 +00:00
mod allocator;
mod arch;
2023-05-06 11:50:24 +00:00
pub mod device_tree;
2023-04-07 21:44:33 +00:00
pub mod handle;
2023-06-26 11:36:30 +00:00
pub mod host;
2023-05-15 07:19:34 +00:00
pub mod ipc;
2023-03-30 21:43:04 +00:00
mod kmain;
mod logger;
mod memory;
2023-06-26 12:55:37 +00:00
mod scheduler;
2023-05-06 11:50:24 +00:00
pub mod utils;
2022-03-02 14:38:22 +00:00
use versioning::Version;
2022-04-11 22:23:11 +00:00
/// Kernel's version
2023-03-30 21:43:04 +00:00
pub const VERSION: Version = Version {
2022-03-02 14:38:22 +00:00
major: 0,
2023-03-30 21:43:04 +00:00
minor: 2,
patch: 0,
2022-03-02 14:38:22 +00:00
};
2023-03-30 21:43:04 +00:00
#[panic_handler]
fn panic(info: &core::panic::PanicInfo) -> ! {
if let Some(loc) = info.location() {
let _ = crate::arch::log(format_args!(
"Location: {}: {}, {}\r\n",
loc.file(),
loc.line(),
loc.column()
));
}
if let Some(msg) = info.message() {
let _ = crate::arch::log(format_args!("{msg}\r\n"));
}
loop {}
}
2023-05-15 07:19:34 +00:00
#[cfg(test)]
fn test_runner(tests: &[&dyn Fn()]) {
println!("Running {} tests", tests.len());
for test in tests {
test();
}
}