c5331d2bff7ac2ee0773df8fd2df7323bc13596e
[cacao.git] / src / native / vm / gnuclasspath / java_lang_management_VMManagementFactory.c
1 /* src/native/vm/gnuclasspath/java_lang_management_VMManagementFactory.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 <stdlib.h>
29
30 #include "vm/types.h"
31
32 #include "native/jni.h"
33 #include "native/native.h"
34
35 #include "native/include/java_lang_management_VMManagementFactory.h"
36
37 #include "toolbox/logging.h"
38
39 #include "vm/builtin.h"
40
41 #include "vmcore/globals.hpp"
42
43
44 /* native methods implemented by this file ************************************/
45
46 static JNINativeMethod methods[] = {
47         { "getMemoryPoolNames",       "()[Ljava/lang/String;", (void *) (ptrint) &Java_java_lang_management_VMManagementFactory_getMemoryPoolNames       },
48         { "getMemoryManagerNames",    "()[Ljava/lang/String;", (void *) (ptrint) &Java_java_lang_management_VMManagementFactory_getMemoryManagerNames    },
49         { "getGarbageCollectorNames", "()[Ljava/lang/String;", (void *) (ptrint) &Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames },
50 };
51
52
53 /* _Jv_java_lang_management_VMManagementFactory_init ***************************
54
55    Register native functions.
56
57 *******************************************************************************/
58
59 void _Jv_java_lang_management_VMManagementFactory_init(void)
60 {
61         utf *u;
62
63         u = utf_new_char("java/lang/management/VMManagementFactory");
64
65         native_method_register(u, methods, NATIVE_METHODS_COUNT);
66 }
67
68
69 /*
70  * Class:     java/lang/management/VMManagementFactory
71  * Method:    getMemoryPoolNames
72  * Signature: ()[Ljava/lang/String;
73  */
74 JNIEXPORT java_handle_objectarray_t* JNICALL Java_java_lang_management_VMManagementFactory_getMemoryPoolNames(JNIEnv *env, jclass clazz)
75 {
76         java_handle_objectarray_t *oa;
77
78         log_println("Java_java_lang_management_VMManagementFactory_getMemoryPoolNames: IMPLEMENT ME!");
79
80         oa = builtin_anewarray(0, class_java_lang_String);
81
82         return oa;
83 }
84
85
86 /*
87  * Class:     java/lang/management/VMManagementFactory
88  * Method:    getMemoryManagerNames
89  * Signature: ()[Ljava/lang/String;
90  */
91 JNIEXPORT java_handle_objectarray_t* JNICALL Java_java_lang_management_VMManagementFactory_getMemoryManagerNames(JNIEnv *env, jclass clazz)
92 {
93         java_handle_objectarray_t *oa;
94
95         log_println("Java_java_lang_management_VMManagementFactory_getMemoryManagerNames: IMPLEMENT ME!");
96
97         oa = builtin_anewarray(0, class_java_lang_String);
98
99         return oa;
100 }
101
102
103 /*
104  * Class:     java/lang/management/VMManagementFactory
105  * Method:    getGarbageCollectorNames
106  * Signature: ()[Ljava/lang/String;
107  */
108 JNIEXPORT java_handle_objectarray_t* JNICALL Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames(JNIEnv *env, jclass clazz)
109 {
110         java_handle_objectarray_t *oa;
111
112         log_println("Java_java_lang_management_VMManagementFactory_getGarbageCollectorNames: IMPLEMENT ME!");
113
114         oa = builtin_anewarray(0, class_java_lang_String);
115
116         return oa;
117 }
118
119
120 /*
121  * These are local overrides for various environment variables in Emacs.
122  * Please do not remove this and leave it at the end of the file, where
123  * Emacs will automagically detect them.
124  * ---------------------------------------------------------------------
125  * Local variables:
126  * mode: c
127  * indent-tabs-mode: t
128  * c-basic-offset: 4
129  * tab-width: 4
130  * End:
131  * vim:noexpandtab:sw=4:ts=4:
132  */