commit message

pls-build-on-my-machine
Able 2022-03-07 12:21:16 -06:00
parent 207fa16675
commit 1231f8d871
Signed by untrusted user: able
GPG Key ID: D164AF5F5700BE51
3 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,6 @@ use lliw::{Fg, Reset};
pub use log::{debug, info, trace, warn};
use log::{Level, Metadata, Record};
use crate::arch::drivers::timer::TIMER_INTERRUPT_HERTZ;
struct SimpleLogger;
// TODO: Rebuild this to take advantage of sockets
// DETAIL: Log to a socket instead of the screen

View File

@ -32,7 +32,7 @@ lazy_static::lazy_static!(
;
);
use alloc::string::{String, ToString};
use alloc::string::String;
use rhai::Engine;
use x86_64::instructions::interrupts::{disable, enable};

View File

@ -62,4 +62,6 @@ pub enum MessagingError {
MessageTooLarge,
/// The reciever of the message is not valid
ProcessNonExistant,
/// The message Queue is full
TooManyMessages,
}