Merged revisions 7797-7917 via svnmerge from
[cacao.git] / src / native / vm / cldc1.1 / com_sun_cldchi_jvm_JVM.c
1 /* src/native/vm/cldc1.1/com_sun_cldchi_jvm_JVM.c
2
3    Copyright (C) 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_String.h"
37
38 #include "native/include/com_sun_cldchi_jvm_JVM.h"
39
40 #include "native/vm/java_lang_Runtime.h"
41
42 #include "vm/exceptions.h"
43 #include "vm/stringlocal.h"
44
45
46 /* native methods implemented by this file ************************************/
47  
48 static JNINativeMethod methods[] = {
49         { "loadLibrary", "(Ljava/lang/String;)V", (void *) (ptrint) &Java_com_sun_cldchi_jvm_JVM_loadLibrary },
50 };
51
52
53 /* _Jv_com_sun_cldchi_jvm_JVM_init *********************************************
54  
55    Register native functions.
56  
57 *******************************************************************************/
58  
59 void _Jv_com_sun_cldchi_jvm_JVM_init(void)
60 {
61         utf *u;
62  
63         u = utf_new_char("com/sun/cldchi/jvm/JVM");
64  
65         native_method_register(u, methods, NATIVE_METHODS_COUNT);
66 }
67
68
69 /*
70  * Class:     com/sun/cldchi/jvm/JVM
71  * Method:    loadLibrary
72  * Signature: (Ljava/lang/String;)V
73  */
74 JNIEXPORT void JNICALL Java_com_sun_cldchi_jvm_JVM_loadLibrary(JNIEnv *env, jclass clazz, java_lang_String *libName)
75 {
76         s4   result;
77         utf *name;
78
79 #if defined(ENABLE_JNI)
80         result = _Jv_java_lang_Runtime_loadLibrary(env, libName, NULL);
81 #else
82         result = _Jv_java_lang_Runtime_loadLibrary(libName, NULL);
83 #endif
84
85         /* check for error and throw one in case */
86
87         if (result == 0) {
88                 name = javastring_toutf((java_objectheader *) libName, false);
89                 exceptions_throw_unsatisfiedlinkerror(name);
90         }
91 }
92
93
94 /*
95  * These are local overrides for various environment variables in Emacs.
96  * Please do not remove this and leave it at the end of the file, where
97  * Emacs will automagically detect them.
98  * ---------------------------------------------------------------------
99  * Local variables:
100  * mode: c
101  * indent-tabs-mode: t
102  * c-basic-offset: 4
103  * tab-width: 4
104  * End:
105  * vim:noexpandtab:sw=4:ts=4:
106  */