mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-22 00:43:24 +00:00
Rename jinux to asterinas in documentation and code
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
2b248dc326
commit
99f6765ced
@ -1,13 +1,13 @@
|
||||
#![no_std]
|
||||
#![no_main]
|
||||
// The `export_name` attribute for the `jinux_main` entrypoint requires the removal of safety check.
|
||||
// The `export_name` attribute for the `aster_main` entrypoint requires the removal of safety check.
|
||||
// Please be aware that the kernel is not allowed to introduce any other unsafe operations.
|
||||
// #![forbid(unsafe_code)]
|
||||
extern crate aster_frame;
|
||||
|
||||
use aster_frame::early_println;
|
||||
|
||||
#[export_name = "jinux_main"]
|
||||
#[export_name = "aster_main"]
|
||||
pub fn main() -> ! {
|
||||
aster_frame::init();
|
||||
early_println!("[kernel] finish init aster_frame");
|
||||
|
Reference in New Issue
Block a user