We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2944375 commit fc74645Copy full SHA for fc74645
src/aero_kernel/src/drivers/uart_16550.rs
@@ -148,7 +148,6 @@ pub macro serial_println {
148
#[doc(hidden)]
149
pub fn _serial_print(args: fmt::Arguments) {
150
COM_1.get().map(|c| {
151
- //
152
c.lock_irq()
153
.write_fmt(args)
154
.expect("failed to write to COM1")
src/aero_kernel/src/main.rs
@@ -28,18 +28,15 @@
28
29
#![feature(
30
custom_test_frameworks,
31
- core_intrinsics,
32
alloc_error_handler,
33
lang_items,
34
panic_info_message,
35
- thread_local,
36
decl_macro,
37
ptr_internals,
38
linked_list_cursors,
39
extern_types,
40
new_uninit,
41
box_syntax,
42
- naked_functions,
43
step_trait,
44
const_btree_new,
45
prelude_import
0 commit comments