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