pull/12/head
able 2023-11-20 03:13:18 -06:00
parent 2e2f28b746
commit a56870b90f
5 changed files with 15 additions and 18 deletions

View File

@ -83,7 +83,10 @@ pub fn handler(vm: &mut Vm) {
msg_vec.push(value);
}
buff.push(msg_vec.clone());
info!("Message {:?} has been sent to {}", msg_vec, buffer_id);
info!(
"Message {:?} has been sent to Buffer({})",
msg_vec, buffer_id
);
drop(buffs);
}
}

View File

@ -47,7 +47,9 @@ fn Trace(string) {log(4, string);}
fn open(string_path){
let file_path = data::str("Meow meow meow bark bark bark");
let file_path = data::str(string_path);
ipc_send(2, file_path, file_path.len);
}
fn write(){}
fn write(){}
fn read(){}
fn close(){}

View File

@ -6,9 +6,7 @@ fn main(){
std::Info("Hello, world!");
std::Debug("XYZ");
std::Trace("Trace Deez");
// std::open("/file.hbf");
tx();
}

View File

@ -2,9 +2,8 @@
import "sysdata/test-programs/hblib/std" as std;
fn main() {
// jmp here
std::ipc_recv(2);
un();
}

View File

@ -2,15 +2,10 @@ import "sysdata/test-programs/hblib/std" as std;
fn main(){
std::Info("Trying to open a file.");
// let ret = std::open("/file.hbf");
// std::Info("File return " + ret);
std::ipc_make_bound_buffer(1000);
let str = data::str("ABC XYZ");
std::ipc_send(2, str, str.len);
std::ipc_recv(2);
std::open("/file.hbf");
std::write();
std::read();
std::close();
std::Info("VFS Test done!");
// un();