* src/vmcore/linker.c (build_display): Removed superfluous recursion; return
[cacao.git] / src / native / jni.h
1 /* src/native/jni.h - JNI types and data structures
2
3    Copyright (C) 1996-2005, 2006, 2007, 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 /* jni.h ***********************************************************************
27
28    ATTENTION: We include this file before we actually define our own
29    jni.h.  We do this because otherwise we can get into unresolvable
30    circular header dependencies.
31
32    This is OK as GNU Classpath defines:
33
34    #define __CLASSPATH_JNI_MD_H__
35    #define _CLASSPATH_JNI_H
36
37    and OpenJDK defines:
38
39    #define _JAVASOFT_JNI_MD_H_
40    #define _JAVASOFT_JNI_H_
41
42    CLASSPATH_JNI_MD_H and CLASSPATH_JNI_H are defined in config.h.
43
44 *******************************************************************************/
45
46 #include "config.h"
47
48 /* We include both headers with the absolute path so we can be sure
49    that the preprocessor does not take another header.  Furthermore we
50    include jni_md.h before jni.h as the latter includes the former. */
51
52 #include INCLUDE_JNI_MD_H
53 #include INCLUDE_JNI_H
54
55 #ifndef _JNI_H
56 #define _JNI_H
57
58
59 #include "vm/types.h"
60
61 #include "vm/global.h"
62
63 #include "vmcore/method.h"
64
65
66 /* _Jv_JNIEnv *****************************************************************/
67
68 typedef struct _Jv_JNIEnv _Jv_JNIEnv;
69
70 struct _Jv_JNIEnv {
71         const struct JNINativeInterface_ *env;    /* This MUST be the first entry */
72 };
73
74
75 /* _Jv_JavaVM *****************************************************************/
76
77 typedef struct _Jv_JavaVM _Jv_JavaVM;
78
79 struct _Jv_JavaVM {
80         const struct JNIInvokeInterface_ *functions;/*This MUST be the first entry*/
81
82         /* JVM instance-specific variables */
83
84         s8 starttime;                       /* VM startup time                    */
85
86         s4 Java_gnu_java_lang_management_VMClassLoadingMXBeanImpl_verbose;
87         s4 Java_gnu_java_lang_management_VMMemoryMXBeanImpl_verbose;
88         s4 java_lang_management_ThreadMXBean_PeakThreadCount;
89         s4 java_lang_management_ThreadMXBean_ThreadCount;
90         s8 java_lang_management_ThreadMXBean_TotalStartedThreadCount;
91 };
92
93
94 /* CACAO related stuff ********************************************************/
95
96 extern const struct JNIInvokeInterface_ _Jv_JNIInvokeInterface;
97 extern struct JNINativeInterface_ _Jv_JNINativeInterface;
98
99
100 /* hashtable_global_ref_entry *************************************************/
101
102 typedef struct hashtable_global_ref_entry hashtable_global_ref_entry;
103
104 struct hashtable_global_ref_entry {
105         java_object_t              *o;      /* object pointer of global ref       */
106         s4                          refs;   /* references of the current pointer  */
107         hashtable_global_ref_entry *hashlink; /* link for external chaining       */
108 };
109
110
111 /* function prototypes ********************************************************/
112
113 bool jni_init(void);
114 bool jni_version_check(int version);
115
116 #endif /* _JNI_H */
117
118
119 /*
120  * These are local overrides for various environment variables in Emacs.
121  * Please do not remove this and leave it at the end of the file, where
122  * Emacs will automagically detect them.
123  * ---------------------------------------------------------------------
124  * Local variables:
125  * mode: c
126  * indent-tabs-mode: t
127  * c-basic-offset: 4
128  * tab-width: 4
129  * End:
130  */