* Removed all Id tags.
[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 */
26
27
28 #include "config.h"
29 #include "vm/types.h"
30
31 #include "native/jni.h"
32 #include "native/native.h"
33
34 #include "native/include/java_lang_Runtime.h"
35
36 #include "native/vm/java_lang_Runtime.h"
37
38
39 /* native methods implemented by this file ************************************/
40  
41 static JNINativeMethod methods[] = {
42         { "exitInternal", "(I)V", (void *) (ptrint) &Java_java_lang_Runtime_exitInternal },
43         { "freeMemory",   "()J",  (void *) (ptrint) &Java_java_lang_Runtime_freeMemory   },
44         { "totalMemory",  "()J",  (void *) (ptrint) &Java_java_lang_Runtime_totalMemory  },
45         { "gc",           "()V",  (void *) (ptrint) &Java_java_lang_Runtime_gc           },
46 };
47  
48  
49 /* _Jv_java_lang_Runtime_init **************************************************
50  
51    Register native functions.
52  
53 *******************************************************************************/
54  
55 void _Jv_java_lang_Runtime_init(void)
56 {
57         utf *u;
58  
59         u = utf_new_char("java/lang/Runtime");
60  
61         native_method_register(u, methods, NATIVE_METHODS_COUNT);
62 }
63
64
65 /*
66  * Class:     java/lang/Runtime
67  * Method:    exitInternal
68  * Signature: (I)V
69  */
70 JNIEXPORT void JNICALL Java_java_lang_Runtime_exitInternal(JNIEnv *env, java_lang_Runtime *this, s4 status)
71 {
72         _Jv_java_lang_Runtime_exit(status);
73 }
74
75
76 /*
77  * Class:     java/lang/Runtime
78  * Method:    freeMemory
79  * Signature: ()J
80  */
81 JNIEXPORT s8 JNICALL Java_java_lang_Runtime_freeMemory(JNIEnv *env, java_lang_Runtime *this)
82 {
83         return _Jv_java_lang_Runtime_freeMemory();
84 }
85
86
87 /*
88  * Class:     java/lang/Runtime
89  * Method:    totalMemory
90  * Signature: ()J
91  */
92 JNIEXPORT s8 JNICALL Java_java_lang_Runtime_totalMemory(JNIEnv *env, java_lang_Runtime *this)
93 {
94         return _Jv_java_lang_Runtime_totalMemory();
95 }
96
97
98 /*
99  * Class:     java/lang/Runtime
100  * Method:    gc
101  * Signature: ()V
102  */
103 JNIEXPORT void JNICALL Java_java_lang_Runtime_gc(JNIEnv *env, java_lang_Runtime *this)
104 {
105         _Jv_java_lang_Runtime_gc();
106 }
107
108
109 /*
110  * These are local overrides for various environment variables in Emacs.
111  * Please do not remove this and leave it at the end of the file, where
112  * Emacs will automagically detect them.
113  * ---------------------------------------------------------------------
114  * Local variables:
115  * mode: c
116  * indent-tabs-mode: t
117  * c-basic-offset: 4
118  * tab-width: 4
119  * End:
120  * vim:noexpandtab:sw=4:ts=4:
121  */