Add mode to open operation

This commit is contained in:
pjht 2024-11-16 11:54:29 -06:00
parent 8ca9295d57
commit 38bb932cc9
Signed by: pjht
GPG Key ID: 7B5F6AFBEC7EE78E

View File

@ -2,7 +2,7 @@ mod controller;
use std::{
collections::VecDeque,
os::mikros::{ipc, syscalls, Errno},
os::mikros::{ipc, syscalls, Errno, FileOpenMode},
sync::OnceLock,
};
@ -21,7 +21,7 @@ static KEYPRESS_BUF: Mutex<VecDeque<char>> = Mutex::new(VecDeque::new());
struct DevServ;
impl dev_driver_rpc::Server for DevServ {
fn open(&self, _path: &std::path::Path) -> Result<u64, Errno> {
fn open(&self, _path: &std::path::Path, _mode: FileOpenMode) -> Result<u64, Errno> {
Ok(0)
}
}