blob: 710c481eed3fb32ca8c39eab51ad533767e3726c (
plain)
1
2
3
4
5
6
7
8
9
|
Wait: module
{
PATH: con "/dis/lib/wait.dis";
init: fn();
read: fn(fd: ref Sys->FD): (int, string, string);
monitor: fn(fd: ref Sys->FD): (int, chan of (int, string, string));
parse: fn(status: string): (int, string, string);
};
|