CACAO
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
source
cacao
src
mm
cacao-gc
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
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
*/
list_final_entry_t::o
java_object_t * o
Definition:
final.h:53
java_object_t
Definition:
global.hpp:263
types.hpp
final_register
void final_register(java_object_t *o, methodinfo *finalizer)
Definition:
final.c:47
list_final_entry_t::type
u4 type
Definition:
final.h:52
list_final_entry_t
Definition:
final.h:50
list_final_entry_t::finalizer
methodinfo * finalizer
Definition:
final.h:54
list_final_entry_t::linkage
listnode_t linkage
Definition:
final.h:51
final_invoke
void final_invoke()
Definition:
final.c:61
method.hpp
final_set_all_reclaimable
void final_set_all_reclaimable()
Definition:
final.c:92
u4
uint32_t u4
Definition:
types.hpp:46
methodinfo
Definition:
method.hpp:68
final_list
list_t * final_list
Definition:
final.c:38
list.hpp
final_init
void final_init()
Definition:
final.c:42
Generated on Fri Aug 4 2017 03:01:45 for CACAO by
1.8.5