mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-27 23:51:33 +00:00
re-organize modules for syscalls, windows is in bad shape
This commit is contained in:
@ -6,7 +6,7 @@ pub struct Stdout;
|
||||
pub struct Stderr;
|
||||
|
||||
impl FileLike for Stdin {
|
||||
fn write(&mut self, buf: &[u8], _count: usize, _offset: usize) -> Result<usize, Error> {
|
||||
fn write(&mut self, _buf: &[u8], _count: usize, _offset: usize) -> Result<usize, Error> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
@ -22,31 +22,3 @@ impl FileLike for Stdin {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
||||
//impl FileLike for Stdout {
|
||||
// fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
|
||||
// unimplemented!()
|
||||
// }
|
||||
//
|
||||
// fn close(self) -> Result<(), Error> {
|
||||
// unimplemented!()
|
||||
// }
|
||||
//
|
||||
// fn metadata(&self) -> Result<Metadata, Error> {
|
||||
// unimplemented!()
|
||||
// }
|
||||
//}
|
||||
//
|
||||
//impl FileLike for Stderr {
|
||||
// fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error> {
|
||||
// unimplemented!()
|
||||
// }
|
||||
//
|
||||
// fn close(self) -> Result<(), Error> {
|
||||
// unimplemented!()
|
||||
// }
|
||||
//
|
||||
// fn metadata(&self) -> Result<Metadata, Error> {
|
||||
// unimplemented!()
|
||||
// }
|
||||
//}
|
||||
|
Reference in New Issue
Block a user