* src/native/jni.h: Removed.
[cacao.git] / src / native / vm / gnuclasspath / gnu_java_lang_management_VMRuntimeMXBeanImpl.cpp
1 /* src/native/vm/gnuclasspath/gnu_java_lang_management_VMRuntimeMXBeanImpl.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.hpp"
31 #include "native/native.h"
32
33 #if defined(ENABLE_JNI_HEADERS)
34 # include "native/vm/include/gnu_java_lang_management_VMRuntimeMXBeanImpl.h"
35 #endif
36
37 #include "vm/builtin.h"
38 #include "vm/global.h"
39 #include "vm/globals.hpp"
40 #include "vm/utf8.h"
41 #include "vm/vm.hpp"
42
43
44 // Native functions are exported as C functions.
45 extern "C" {
46
47 /*
48  * Class:     gnu/java/lang/management/VMRuntimeMXBeanImpl
49  * Method:    getInputArguments
50  * Signature: ()[Ljava/lang/String;
51  */
52 JNIEXPORT java_handle_objectarray_t* JNICALL Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments(JNIEnv *env, jclass clazz)
53 {
54         log_println("Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments: IMPLEMENT ME!");
55
56         return builtin_anewarray(0, class_java_lang_String);
57 }
58
59
60 /*
61  * Class:     gnu/java/lang/management/VMRuntimeMXBeanImpl
62  * Method:    getStartTime
63  * Signature: ()J
64  */
65 JNIEXPORT int64_t JNICALL Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime(JNIEnv *env, jclass clazz)
66 {
67         return vm->get_starttime();
68 }
69
70 } // extern "C"
71
72
73 /* native methods implemented by this file ************************************/
74
75 static JNINativeMethod methods[] = {
76         { (char*) "getInputArguments", (char*) "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments },
77         { (char*) "getStartTime",      (char*) "()J",                   (void*) (uintptr_t) &Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime      },
78 };
79
80
81 /* _Jv_gnu_java_lang_management_VMRuntimeMXBeanImpl_init ***********************
82
83    Register native functions.
84
85 *******************************************************************************/
86
87 // FIXME
88 extern "C" {
89 void _Jv_gnu_java_lang_management_VMRuntimeMXBeanImpl_init(void)
90 {
91         utf *u;
92
93         u = utf_new_char("gnu/java/lang/management/VMRuntimeMXBeanImpl");
94
95         native_method_register(u, methods, NATIVE_METHODS_COUNT);
96 }
97 }
98
99
100 /*
101  * These are local overrides for various environment variables in Emacs.
102  * Please do not remove this and leave it at the end of the file, where
103  * Emacs will automagically detect them.
104  * ---------------------------------------------------------------------
105  * Local variables:
106  * mode: c++
107  * indent-tabs-mode: t
108  * c-basic-offset: 4
109  * tab-width: 4
110  * End:
111  * vim:noexpandtab:sw=4:ts=4:
112  */