1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-27 02:03:29 +04:00
rCore/kernel/src/lib.rs

82 lines
1.7 KiB
Rust
Raw Normal View History

2018-04-02 11:28:32 +04:00
#![feature(ptr_internals)]
2017-04-11 17:02:21 +04:00
#![feature(lang_items)]
2017-04-12 21:16:04 +04:00
#![feature(const_fn)]
2017-11-19 15:41:20 +04:00
#![feature(alloc)]
#![feature(naked_functions)]
#![feature(asm)]
2018-06-04 21:32:21 +04:00
#![feature(optin_builtin_traits)]
#![feature(panic_handler)]
#![feature(panic_info_message)]
2018-07-04 12:23:11 +04:00
#![feature(global_asm)]
2018-07-14 08:28:55 +04:00
#![feature(compiler_builtins_lib)]
#![feature(raw)]
2018-10-31 20:45:02 +04:00
#![feature(vec_resize_default)]
2017-04-11 17:02:21 +04:00
#![no_std]
2017-11-19 15:41:20 +04:00
#[macro_use]
extern crate alloc;
extern crate bit_allocator;
extern crate bit_field;
2017-04-13 20:27:39 +04:00
#[macro_use]
extern crate bitflags;
#[macro_use]
2017-04-18 17:15:44 +04:00
extern crate lazy_static;
extern crate linked_list_allocator;
#[macro_use]
extern crate log;
#[macro_use]
extern crate once;
extern crate simple_filesystem;
extern crate spin;
2018-06-23 15:11:41 +04:00
extern crate ucore_memory;
2018-07-16 21:56:28 +04:00
extern crate ucore_process;
extern crate volatile;
#[cfg(target_arch = "x86_64")]
extern crate x86_64;
extern crate xmas_elf;
pub use process::{processor, new_kernel_context};
use ucore_process::thread;
use linked_list_allocator::LockedHeap;
#[macro_use] // print!
pub mod logging;
mod memory;
mod lang;
2018-04-05 18:36:39 +04:00
mod util;
2018-04-12 16:57:56 +04:00
mod consts;
mod process;
2018-05-12 23:41:41 +04:00
mod syscall;
mod fs;
mod sync;
mod trap;
mod shell;
2017-04-12 21:16:04 +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;
#[cfg(target_arch = "riscv32")]
2018-07-04 12:23:11 +04:00
#[path = "arch/riscv32/mod.rs"]
pub mod arch;
2018-07-04 12:23:11 +04:00
pub fn kmain() -> ! {
process::processor().run();
2018-07-16 13:31:29 +04:00
2018-07-12 13:19:55 +04:00
// thread::test::local_key();
// thread::test::unpack();
2018-06-04 21:32:21 +04:00
// sync::test::philosopher_using_mutex();
// sync::test::philosopher_using_monitor();
2018-07-11 06:57:07 +04:00
// sync::mpsc::test::test_all();
}
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]
static HEAP_ALLOCATOR: LockedHeap = LockedHeap::empty();