acadia/yunq/example.yunq
Drew Galbraith 19f7ba44c4 [Yunq] First pass at parsing the yunq idl for ipc.
Writing my own idl to make ipc simpler and allow easy passing of
capabilities between processes.
2023-10-12 22:46:37 -07:00

14 lines
197 B
Text

interface File {
method open (OpenFileRequest) -> (FileResponse);
}
message OpenFileRequest {
string path;
u64 options;
}
message File {
string path;
u64 attrs;
capability mem_cap;
}