2000-01-07 08:51:58 -08:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Damien Doligez, projet Moscova, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 2000 Institut National de Recherche en Informatique et */
|
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
2000-01-07 08:51:58 -08:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#ifndef CAML_FINALISE_H
|
|
|
|
#define CAML_FINALISE_H
|
|
|
|
|
2000-01-07 08:51:58 -08:00
|
|
|
#include "roots.h"
|
|
|
|
|
2004-01-02 11:23:29 -08:00
|
|
|
void caml_final_update (void);
|
|
|
|
void caml_final_do_calls (void);
|
|
|
|
void caml_final_do_strong_roots (scanning_action f);
|
|
|
|
void caml_final_do_weak_roots (scanning_action f);
|
|
|
|
void caml_final_do_young_roots (scanning_action f);
|
|
|
|
void caml_final_empty_young (void);
|
|
|
|
value caml_final_register (value f, value v);
|
2003-12-15 10:10:51 -08:00
|
|
|
|
|
|
|
#endif /* CAML_FINALISE_H */
|