8a9e043816a93cdeebacb269cc18f1f1e6b02b74
[cacao.git] / src / native / vm / gnuclasspath / java_security_VMAccessController.cpp
1 /* src/native/vm/gnuclasspath/java_security_VMAccessController.cpp
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 #include "config.h"
27
28 #include <stdint.h>
29
30 #include "native/jni.h"
31 #include "native/native.h"
32
33 // FIXME
34 extern "C" {
35 #include "native/include/java_security_VMAccessController.h"
36 }
37
38 #include "vm/global.h"
39
40 #include "vm/jit/stacktrace.hpp"
41
42 #include "vmcore/utf8.h"
43
44
45 // Native functions are exported as C functions.
46 extern "C" {
47
48 /*
49  * Class:     java/security/VMAccessController
50  * Method:    getStack
51  * Signature: ()[[Ljava/lang/Object;
52  */
53 JNIEXPORT java_handle_objectarray_t* JNICALL Java_java_security_VMAccessController_getStack(JNIEnv *env, jclass clazz)
54 {
55         return stacktrace_get_stack();
56 }
57
58 } // extern "C"
59
60
61 /* native methods implemented by this file ************************************/
62
63 static JNINativeMethod methods[] = {
64         { (char*) "getStack", (char*) "()[[Ljava/lang/Object;", (void*) (uintptr_t) &Java_java_security_VMAccessController_getStack },
65 };
66
67
68 /* _Jv_java_security_VMAccessController_init ***********************************
69
70    Register native functions.
71
72 *******************************************************************************/
73
74 // FIXME
75 extern "C" {
76 void _Jv_java_security_VMAccessController_init(void)
77 {
78         utf *u;
79
80         u = utf_new_char("java/security/VMAccessController");
81
82         native_method_register(u, methods, NATIVE_METHODS_COUNT);
83 }
84 }
85
86
87 /*
88  * These are local overrides for various environment variables in Emacs.
89  * Please do not remove this and leave it at the end of the file, where
90  * Emacs will automagically detect them.
91  * ---------------------------------------------------------------------
92  * Local variables:
93  * mode: c++
94  * indent-tabs-mode: t
95  * c-basic-offset: 4
96  * tab-width: 4
97  * End:
98  */