emergency-exit
-- r7rs
Definition procedure
;
emergency-exit
(from vonuvoli
);Procedure variants:
(() -> (halt))
halt
;((true) -> (halt))
((false) -> (halt))
((any) -> (halt))
scheme:process-context
-- (scheme process-context)
;scheme
-- (scheme)
;(emergency-exit) (emergency-exit obj)
Terminates the program without running any outstanding dynamic-wind
after
procedures and communicates an exit value to the operating system in the same manner asexit
.Note: The
emergency-exit
procedure corresponds to the_exit
procedure in Windows and POSIX.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.