interface: fs: add error code result to fs.map()

This commit is contained in:
2026-03-15 09:44:32 +00:00
parent 0c56c645ac
commit eb8d9c3512

View File

@@ -6,4 +6,4 @@ func close[1]() -> (err: int);
func read[2](count: size) -> (err: int, nr_read: size, data: buffer); func read[2](count: size) -> (err: int, nr_read: size, data: buffer);
func write[3](data: buffer) -> (err: int, nr_written: size); func write[3](data: buffer) -> (err: int, nr_written: size);
func map[4](prot: int, flags: int) -> (vmo: handle); func map[4](prot: int, flags: int) -> (err: int, vmo: handle);