2017-04-11 17:02:21 +04:00
|
|
|
#![feature(lang_items)]
|
2017-11-19 15:41:20 +04:00
|
|
|
#![feature(alloc)]
|
2018-04-25 21:00:32 +04:00
|
|
|
#![feature(naked_functions)]
|
2018-12-16 16:55:04 +04:00
|
|
|
#![feature(untagged_unions)]
|
2018-04-18 17:53:39 +04:00
|
|
|
#![feature(asm)]
|
2018-06-04 21:32:21 +04:00
|
|
|
#![feature(optin_builtin_traits)]
|
2018-06-19 19:43:40 +04:00
|
|
|
#![feature(panic_info_message)]
|
2018-07-04 12:23:11 +04:00
|
|
|
#![feature(global_asm)]
|
2017-04-11 17:02:21 +04:00
|
|
|
#![no_std]
|
|
|
|
|
2018-11-19 13:21:06 +04:00
|
|
|
// just keep it ...
|
2018-12-16 16:55:04 +04:00
|
|
|
#[macro_use]
|
2017-11-19 15:41:20 +04:00
|
|
|
extern crate alloc;
|
2019-02-22 08:54:42 +04:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2018-06-04 20:34:34 +04:00
|
|
|
|
2018-11-19 13:21:06 +04:00
|
|
|
pub use crate::process::{processor, new_kernel_context};
|
2019-01-24 15:03:45 +04:00
|
|
|
use rcore_thread::std_thread as thread;
|
2018-06-04 20:34:34 +04:00
|
|
|
use linked_list_allocator::LockedHeap;
|
2018-04-04 16:56:56 +04:00
|
|
|
|
2018-04-04 20:58:23 +04:00
|
|
|
#[macro_use] // print!
|
2018-11-19 13:21:06 +04:00
|
|
|
mod logging;
|
2017-04-13 19:59:12 +04:00
|
|
|
mod memory;
|
2018-04-04 16:56:56 +04:00
|
|
|
mod lang;
|
2018-04-05 18:36:39 +04:00
|
|
|
mod util;
|
2018-04-12 16:57:56 +04:00
|
|
|
mod consts;
|
2018-04-26 17:53:20 +04:00
|
|
|
mod process;
|
2018-05-12 23:41:41 +04:00
|
|
|
mod syscall;
|
2018-05-18 07:49:27 +04:00
|
|
|
mod fs;
|
2018-05-31 16:23:26 +04:00
|
|
|
mod sync;
|
2018-07-12 20:00:42 +04:00
|
|
|
mod trap;
|
2018-11-15 20:49:42 +04:00
|
|
|
mod shell;
|
2019-01-23 18:11:41 +04:00
|
|
|
mod drivers;
|
|
|
|
mod net;
|
2019-01-08 07:04:39 +04:00
|
|
|
mod backtrace;
|
2017-04-12 21:16:04 +04:00
|
|
|
|
2018-04-04 16:56:56 +04:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
#[path = "arch/x86_64/mod.rs"]
|
2018-08-05 13:50:56 +04:00
|
|
|
pub mod arch;
|
2018-04-04 16:56:56 +04:00
|
|
|
|
2018-12-19 21:13:42 +04:00
|
|
|
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
|
2018-07-04 12:23:11 +04:00
|
|
|
#[path = "arch/riscv32/mod.rs"]
|
2018-08-04 19:08:10 +04:00
|
|
|
pub mod arch;
|
2018-07-04 12:23:11 +04:00
|
|
|
|
2018-10-26 07:21:43 +04:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
#[path = "arch/aarch64/mod.rs"]
|
|
|
|
pub mod arch;
|
|
|
|
|
2018-09-08 21:25:14 +04:00
|
|
|
pub fn kmain() -> ! {
|
2018-11-19 13:21:06 +04:00
|
|
|
processor().run();
|
2018-04-18 08:26:21 +04:00
|
|
|
}
|
|
|
|
|
2018-05-13 11:06:44 +04:00
|
|
|
/// Global heap allocator
|
|
|
|
///
|
|
|
|
/// Available after `memory::init()`.
|
|
|
|
///
|
|
|
|
/// It should be defined in memory mod, but in Rust `global_allocator` must be in root mod.
|
2017-11-19 16:13:18 +04:00
|
|
|
#[global_allocator]
|
2017-11-19 17:16:33 +04:00
|
|
|
static HEAP_ALLOCATOR: LockedHeap = LockedHeap::empty();
|