CACAO
final.h
Go to the documentation of this file.
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.hpp"
31 
32 #include "toolbox/list.hpp"
33 #include "vm/method.hpp"
34 
35 
36 /* Global Variables ***********************************************************/
37 
38 extern list_t *final_list;
39 
40 
41 /* Structures *****************************************************************/
42 
44 
45 #define FINAL_REACHABLE 1
46 #define FINAL_RECLAIMABLE 2
47 #define FINAL_FINALIZING 3
48 #define FINAL_FINALIZED 4
49 
51  listnode_t linkage;
55 };
56 
57 
58 /* Prototypes *****************************************************************/
59 
60 void final_init();
61 void final_register(java_object_t *o, methodinfo *finalizer);
62 void final_invoke();
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  */
java_object_t * o
Definition: final.h:53
void final_register(java_object_t *o, methodinfo *finalizer)
Definition: final.c:47
u4 type
Definition: final.h:52
Definition: final.h:50
methodinfo * finalizer
Definition: final.h:54
listnode_t linkage
Definition: final.h:51
void final_invoke()
Definition: final.c:61
void final_set_all_reclaimable()
Definition: final.c:92
uint32_t u4
Definition: types.hpp:46
list_t * final_list
Definition: final.c:38
void final_init()
Definition: final.c:42