0e89bc67aab559cc8af180ef11df5e57cef1a719
[ghc-hetmet.git] / ghc / runtime / hooks / ExitHook.lc
1
2 Note: by the time this hook has been called, Haskell land
3 will have been shut down completely.
4
5 ToDo: feed the hook info on whether we're shutting down as a result
6 of termination or run-time error ?
7
8 \begin{code}
9 #include "rtsdefs.h"
10
11 void
12 OnExitHook ()
13 {
14  return;
15 }
16 \end{code}