Merged trunk and subtype.
[cacao.git] / src / mm / cacao-gc / final.h
1 /* mm/cacao-gc/final.h - GC header for finalization and weak references
2
3    Copyright (C) 2006, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _FINAL_H
27 #define _FINAL_H
28
29 #include "config.h"
30 #include "vm/types.h"
31
32 #include "toolbox/list.h"
33 #include "vm/method.h"
34
35
36 /* Global Variables ***********************************************************/
37
38 extern list_t *final_list;
39
40
41 /* Structures *****************************************************************/
42
43 typedef struct list_final_entry_t list_final_entry_t;
44
45 #define FINAL_REACHABLE   1
46 #define FINAL_RECLAIMABLE 2
47 #define FINAL_FINALIZING  3
48 #define FINAL_FINALIZED   4
49
50 struct list_final_entry_t {
51         listnode_t         linkage;
52         u4                 type;
53         java_object_t     *o;
54         methodinfo        *finalizer;
55 };
56
57
58 /* Prototypes *****************************************************************/
59
60 void final_init();
61 void final_register(java_object_t *o, methodinfo *finalizer);
62 void final_invoke();
63 void final_set_all_reclaimable();
64
65
66 #endif /* _FINAL_H */
67
68 /*
69  * These are local overrides for various environment variables in Emacs.
70  * Please do not remove this and leave it at the end of the file, where
71  * Emacs will automagically detect them.
72  * ---------------------------------------------------------------------
73  * Local variables:
74  * mode: c
75  * indent-tabs-mode: t
76  * c-basic-offset: 4
77  * tab-width: 4
78  * End:
79  * vim:noexpandtab:sw=4:ts=4:
80  */