Remove PID debug print
This commit is contained in:
parent
1f30d20311
commit
c079f21c3d
@ -3,12 +3,11 @@ mod controller;
|
||||
use std::{fs::File, io::Write, os::mikros::{ipc, syscalls}, sync::OnceLock};
|
||||
|
||||
use controller::Ps2Controller;
|
||||
use pc_keyboard::{layouts::Us104Key, EventDecoder, HandleControl, KeyState, Modifiers, ScancodeSet, ScancodeSet2};
|
||||
use pc_keyboard::{layouts::Us104Key, EventDecoder, HandleControl, ScancodeSet, ScancodeSet2};
|
||||
|
||||
static CONTROLLER: OnceLock<Ps2Controller> = OnceLock::new();
|
||||
|
||||
fn main() {
|
||||
dbg!(syscalls::get_pid());
|
||||
let syslog_pid = loop {
|
||||
if let Some(pid) = syscalls::try_get_registered(2) {
|
||||
break pid;
|
||||
|
Loading…
Reference in New Issue
Block a user