Method atexit()
- Method
atexit
voidatexit(function(:void)callback)- Description
This function puts the
callbackin a queue of callbacks to call when pike exits. The call order is reversed, i.e. callbacks that have been added earlier are called aftercallback.- Note
Please note that atexit callbacks are not called if Pike exits abnormally.
- See also