[project @ 1998-11-26 09:17:22 by sof]
[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}