ref: 254b07675e1a5348f2a8723f55e6b5b1b18a4721
dir: /module/timers.m/
Timers: module
{
PATH: con "/dis/lib/timers.dis";
Sec: con 1000;
Timer: adt {
dt: int;
timeout: chan of int;
start: fn(msec: int): ref Timer;
stop: fn(t: self ref Timer);
};
init: fn(gran: int): int;
shutdown: fn();
};