summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-05-18 06:37:37 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-05-18 06:37:37 -0700
commit8a3c85c8028efe135c2eef7c5db204ae30c60ba2 (patch)
tree4223d626529937701574c828541a1d808dc9d311 /txr.1
parent97fce155c0b92429b9deabfca31e35dbb5fe0d8f (diff)
downloadtxr-8a3c85c8028efe135c2eef7c5db204ae30c60ba2.tar.gz
txr-8a3c85c8028efe135c2eef7c5db204ae30c60ba2.tar.bz2
txr-8a3c85c8028efe135c2eef7c5db204ae30c60ba2.zip
New functions: at-exit-call and at-exit-do-not-call.
* sysif.c (at_exit_list): New static variable. (at_exit_call, at_exit_do_not_call): New functions. (at_exit_handler): New static function. (sysif_init): GC-protect at_exit_list. Register at_exit_handler with C atexit function. Register intrinsic functions at-exit-call and at-exit-do-not-call. * sysif.h (at_exit_call, at_exit_do_not_call): Registered. * txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r--txr.138
1 files changed, 38 insertions, 0 deletions
diff --git a/txr.1 b/txr.1
index 7dd08b90..cb16a7f5 100644
--- a/txr.1
+++ b/txr.1
@@ -36279,6 +36279,44 @@ signal, known in \*(TX as the
variable. Abnormal termination of the process is this signal's
default action.
+.coNP Functions @ at-exit-call and @ at-exit-do-not-call
+.synb
+.mets (at-exit-call << function )
+.mets (at-exit-do-not-call << function )
+.syne
+.desc
+The
+.code at-exit-call
+function registers
+.meta function
+to be called when the process terminates normally.
+Multiple functions can be registered, and the same function
+can be registered more than once. The registered
+functions are called in reverse order of their
+registrations.
+
+The
+.code at-exit-do-not-call
+function removes all previous
+.code at-exit-call
+registrations of
+.metn function .
+
+The
+.code at-exit-call
+function returns
+.metn function .
+
+The
+.code at-exit-do-not-call
+function returns
+.code t
+if it removed anything,
+.code nil
+if no registrations of
+.meta function
+were found.
+
.coNP Function @ usleep
.synb
.mets (usleep << usec )