diff options
Diffstat (limited to 'appl/svc/httpd/alarms.m')
| -rw-r--r-- | appl/svc/httpd/alarms.m | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/appl/svc/httpd/alarms.m b/appl/svc/httpd/alarms.m new file mode 100644 index 00000000..b422c48f --- /dev/null +++ b/appl/svc/httpd/alarms.m @@ -0,0 +1,11 @@ +Alarms: module{ + PATH: con "/dis/svc/httpd/alarms.dis"; + + Alarm: adt{ + alchan: chan of int; + pid: int; + stop: fn(a: self Alarm); + alarm: fn(time: int): Alarm; + }; + +}; |
