b576359f9da79ecfb3f90328f074c6cad2c15c22
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Runtime.c
1 /* src/native/vm/cldc1.1/java_lang_Runtime.c
2
3    Copyright (C) 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: java_lang_VMRuntime.c 5900 2006-11-04 17:30:44Z michi $
26
27 */
28
29
30 #include "config.h"
31 #include "vm/types.h"
32
33 #include "native/jni.h"
34 #include "native/native.h"
35
36 #include "native/include/java_lang_Runtime.h"
37
38 #include "native/vm/java_lang_Runtime.h"
39
40
41 /* native methods implemented by this file ************************************/
42  
43 static JNINativeMethod methods[] = {
44         { "exitInternal", "(I)V", (void *) (ptrint) &Java_java_lang_Runtime_exitInternal },
45         { "freeMemory",   "()J",  (void *) (ptrint) &Java_java_lang_Runtime_freeMemory   },
46         { "totalMemory",  "()J",  (void *) (ptrint) &Java_java_lang_Runtime_totalMemory  },
47         { "gc",           "()V",  (void *) (ptrint) &Java_java_lang_Runtime_gc           },
48 };
49  
50  
51 /* _Jv_java_lang_Runtime_init **************************************************
52  
53    Register native functions.
54  
55 *******************************************************************************/
56  
57 void _Jv_java_lang_Runtime_init(void)
58 {
59         utf *u;
60  
61         u = utf_new_char("java/lang/Runtime");
62  
63         native_method_register(u, methods, NATIVE_METHODS_COUNT);
64 }
65
66
67 /*
68  * Class:     java/lang/Runtime
69  * Method:    exitInternal
70  * Signature: (I)V
71  */
72 JNIEXPORT void JNICALL Java_java_lang_Runtime_exitInternal(JNIEnv *env, java_lang_Runtime *this, s4 status)
73 {
74         _Jv_java_lang_Runtime_exit(status);
75 }
76
77
78 /*
79  * Class:     java/lang/Runtime
80  * Method:    freeMemory
81  * Signature: ()J
82  */
83 JNIEXPORT s8 JNICALL Java_java_lang_Runtime_freeMemory(JNIEnv *env, java_lang_Runtime *this)
84 {
85         return _Jv_java_lang_Runtime_freeMemory();
86 }
87
88
89 /*
90  * Class:     java/lang/Runtime
91  * Method:    totalMemory
92  * Signature: ()J
93  */
94 JNIEXPORT s8 JNICALL Java_java_lang_Runtime_totalMemory(JNIEnv *env, java_lang_Runtime *this)
95 {
96         return _Jv_java_lang_Runtime_totalMemory();
97 }
98
99
100 /*
101  * Class:     java/lang/Runtime
102  * Method:    gc
103  * Signature: ()V
104  */
105 JNIEXPORT void JNICALL Java_java_lang_Runtime_gc(JNIEnv *env, java_lang_Runtime *this)
106 {
107         _Jv_java_lang_Runtime_gc();
108 }
109
110
111 /*
112  * These are local overrides for various environment variables in Emacs.
113  * Please do not remove this and leave it at the end of the file, where
114  * Emacs will automagically detect them.
115  * ---------------------------------------------------------------------
116  * Local variables:
117  * mode: c
118  * indent-tabs-mode: t
119  * c-basic-offset: 4
120  * tab-width: 4
121  * End:
122  * vim:noexpandtab:sw=4:ts=4:
123  */