diff options
| author | bhgv <bhgv.empire@gmail.com> | 2018-03-01 16:54:45 +0200 |
|---|---|---|
| committer | bhgv <bhgv.empire@gmail.com> | 2018-03-01 16:54:45 +0200 |
| commit | b786f20bbab5a59046aa78a2c6c2a11536497202 (patch) | |
| tree | 0851ecdec889eb9b7ba3751cc04d4f0b474e4a9e /module/exception.m | |
inferno-os tree was separated from the inferno-os-android (separated from the Android driver)
Diffstat (limited to 'module/exception.m')
| -rw-r--r-- | module/exception.m | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/exception.m b/module/exception.m new file mode 100644 index 0000000..c5cf01e --- /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; + +}; |
