mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-27 02:03:29 +04:00
69 lines
1.3 KiB
Rust
69 lines
1.3 KiB
Rust
#![feature(lang_items)]
|
|
#![feature(alloc)]
|
|
#![feature(naked_functions)]
|
|
#![feature(untagged_unions)]
|
|
#![feature(asm)]
|
|
#![feature(optin_builtin_traits)]
|
|
#![feature(panic_info_message)]
|
|
#![feature(global_asm)]
|
|
#![deny(unused_must_use)]
|
|
#![no_std]
|
|
|
|
// just keep it ...
|
|
#[macro_use]
|
|
extern crate alloc;
|
|
#[macro_use]
|
|
extern crate log;
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
|
|
pub use crate::process::{new_kernel_context, processor};
|
|
use buddy_system_allocator::LockedHeap;
|
|
use rcore_thread::std_thread as thread;
|
|
|
|
#[macro_use] // print!
|
|
mod logging;
|
|
#[macro_use]
|
|
mod util;
|
|
mod backtrace;
|
|
mod consts;
|
|
mod drivers;
|
|
mod fs;
|
|
mod lang;
|
|
mod memory;
|
|
mod net;
|
|
mod process;
|
|
mod shell;
|
|
mod sync;
|
|
mod syscall;
|
|
mod trap;
|
|
|
|
#[allow(dead_code)]
|
|
#[cfg(target_arch = "x86_64")]
|
|
#[path = "arch/x86_64/mod.rs"]
|
|
pub mod arch;
|
|
|
|
#[cfg(target_arch = "mips")]
|
|
#[path = "arch/mipsel/mod.rs"]
|
|
pub mod arch;
|
|
|
|
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
|
|
#[path = "arch/riscv32/mod.rs"]
|
|
pub mod arch;
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
#[path = "arch/aarch64/mod.rs"]
|
|
pub mod arch;
|
|
|
|
pub fn kmain() -> ! {
|
|
processor().run();
|
|
}
|
|
|
|
/// Global heap allocator
|
|
///
|
|
/// Available after `memory::init()`.
|
|
///
|
|
/// It should be defined in memory mod, but in Rust `global_allocator` must be in root mod.
|
|
#[global_allocator]
|
|
static HEAP_ALLOCATOR: LockedHeap = LockedHeap::empty();
|