webmcp
view framework/env/execute/finalizers.lua @ 343:34bf5f7abe0d
Code cleanup in extos.c: use 1.0e9 instead of 0.000000001 to avoid floating-point inaccuracies, added "const" qualifiers to avoid two compiler warnings
| author | jbe | 
|---|---|
| date | Thu Mar 26 01:56:10 2015 +0100 (2015-03-26) | 
| parents | 1fcdd5c6f498 | 
| children | 
 line source
     1 --[[--
     2 execute.finalizers()
     4 Executes that code in initializers which is placed after execute.inner(). This function is automatically called when a forked process terminates. It may be called in interactive mode to perform a clean shutdown.
     6 --]]--
     8 function execute.finalizers()
     9   for i = #execute._finalizers, 1, -1 do
    10     execute._finalizers[i]()
    11     execute._finalizers[i] = nil
    12   end
    13 end
