2022-04-11 17:23:11 -05:00
|
|
|
//! The ableOS kernel.
|
|
|
|
|
2023-03-30 16:43:04 -05:00
|
|
|
#![feature(
|
|
|
|
abi_x86_interrupt,
|
|
|
|
alloc_error_handler,
|
|
|
|
inline_const,
|
|
|
|
panic_info_message,
|
|
|
|
pointer_is_aligned,
|
|
|
|
prelude_import,
|
|
|
|
ptr_sub_ptr
|
|
|
|
)]
|
2022-05-07 07:08:34 -05:00
|
|
|
#![no_std]
|
2023-04-10 01:16:30 -05:00
|
|
|
// #![deny(missing_docs)]
|
2022-05-07 07:08:34 -05:00
|
|
|
|
|
|
|
extern crate alloc;
|
2022-03-11 13:51:47 -06:00
|
|
|
|
2023-03-30 16:43:04 -05:00
|
|
|
mod allocator;
|
|
|
|
mod arch;
|
2023-04-07 16:44:33 -05:00
|
|
|
pub mod handle;
|
2023-04-05 12:29:20 -05:00
|
|
|
pub mod interp;
|
2023-03-30 16:43:04 -05:00
|
|
|
mod kmain;
|
|
|
|
mod logger;
|
|
|
|
mod memory;
|
2023-04-10 01:16:30 -05:00
|
|
|
mod schedule;
|
2023-03-30 16:43:04 -05:00
|
|
|
mod task;
|
2022-02-28 08:54:41 -06:00
|
|
|
|
2022-03-02 08:38:22 -06:00
|
|
|
use versioning::Version;
|
|
|
|
|
2022-04-11 17:23:11 -05:00
|
|
|
/// Kernel's version
|
2023-03-30 16:43:04 -05:00
|
|
|
pub const VERSION: Version = Version {
|
2022-03-02 08:38:22 -06:00
|
|
|
major: 0,
|
2023-03-30 16:43:04 -05:00
|
|
|
minor: 2,
|
|
|
|
patch: 0,
|
2022-03-02 08:38:22 -06:00
|
|
|
};
|
2023-03-30 16:43:04 -05: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 {}
|
|
|
|
}
|