Sys.Signals module for a Variant type of signals (and a set_signal function that...
[ocaml.git] / byterun / finalise.h
blobec656f4f48df22ac63f68cb4b9fb92ca7414c70a
1 /***********************************************************************/
2 /* */
3 /* Objective Caml */
4 /* */
5 /* Damien Doligez, projet Moscova, INRIA Rocquencourt */
6 /* */
7 /* Copyright 2000 Institut National de Recherche en Informatique et */
8 /* en Automatique. All rights reserved. This file is distributed */
9 /* under the terms of the GNU Library General Public License, with */
10 /* the special exception on linking described in file ../LICENSE. */
11 /* */
12 /***********************************************************************/
14 /* $Id$ */
16 #ifndef CAML_FINALISE_H
17 #define CAML_FINALISE_H
19 #include "roots.h"
21 void caml_final_update (void);
22 void caml_final_do_calls (void);
23 void caml_final_do_strong_roots (scanning_action f);
24 void caml_final_do_weak_roots (scanning_action f);
25 void caml_final_do_young_roots (scanning_action f);
26 void caml_final_empty_young (void);
27 value caml_final_register (value f, value v);
29 #endif /* CAML_FINALISE_H */