summaryrefslogtreecommitdiff
path: root/module/exception.m
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2006-12-22 20:52:35 +0000
committerCharles.Forsyth <devnull@localhost>2006-12-22 20:52:35 +0000
commit46439007cf417cbd9ac8049bb4122c890097a0fa (patch)
tree6fdb25e5f3a2b6d5657eb23b35774b631d4d97e4 /module/exception.m
parent37da2899f40661e3e9631e497da8dc59b971cbd0 (diff)
20060303-partial
Diffstat (limited to 'module/exception.m')
-rw-r--r--module/exception.m18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/exception.m b/module/exception.m
new file mode 100644
index 00000000..c5cf01ed
--- /dev/null
+++ b/module/exception.m
@@ -0,0 +1,18 @@
+Exception: module{
+
+ PATH: con "/dis/lib/exception.dis";
+
+ # returns the last exception in the form pc, module, exception
+ # on the process with the given pid (-1 gives current process)
+ # returns (0, nil, nil) if no exception
+ getexc: fn(pid: int): (int, string, string);
+
+ NOTIFYLEADER, PROPAGATE: con iota;
+
+ # set the exception mode(NOTIFYLEADER or PROPAGATE)
+ # on the current process
+ # it is assumed that the process is a group leader (see Sys->NEWPGRP)
+ # returns -1 on failure, 0 on success
+ setexcmode: fn(mode: int): int;
+
+};