0b43d38c1f285e1c095c6e144431f08268b00828
[cacao.git] / src / native / vm / gnu / java_lang_VMObject.c
1 /* src/native/vm/gnu/java_lang_VMObject.c - java/lang/VMObject
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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_VMObject.c 8123 2007-06-20 23:50:55Z michi $
26
27 */
28
29
30 #include "config.h"
31
32 #include <stdint.h>
33
34 #include "native/jni.h"
35 #include "native/native.h"
36
37 #include "native/include/java_lang_Class.h"            /* required by j.l.VMO */
38 #include "native/include/java_lang_Cloneable.h"        /* required by j.l.VMO */
39 #include "native/include/java_lang_Object.h"           /* required by j.l.VMO */
40
41 #include "native/include/java_lang_VMObject.h"
42
43 #include "native/vm/java_lang_Object.h"
44
45 #include "vmcore/utf8.h"
46
47
48 /* native methods implemented by this file ************************************/
49
50 static JNINativeMethod methods[] = {
51         { "getClass",  "(Ljava/lang/Object;)Ljava/lang/Class;",     (void *) (intptr_t) &Java_java_lang_VMObject_getClass  },
52         { "clone",     "(Ljava/lang/Cloneable;)Ljava/lang/Object;", (void *) (intptr_t) &Java_java_lang_VMObject_clone     },
53         { "notify",    "(Ljava/lang/Object;)V",                     (void *) (intptr_t) &Java_java_lang_VMObject_notify    },
54         { "notifyAll", "(Ljava/lang/Object;)V",                     (void *) (intptr_t) &Java_java_lang_VMObject_notifyAll },
55         { "wait",      "(Ljava/lang/Object;JI)V",                   (void *) (intptr_t) &Java_java_lang_VMObject_wait      },
56 };
57
58
59 /* _Jv_java_lang_VMObject_init *************************************************
60
61    Register native functions.
62
63 *******************************************************************************/
64
65 void _Jv_java_lang_VMObject_init(void)
66 {
67         utf *u;
68
69         u = utf_new_char("java/lang/VMObject");
70
71         native_method_register(u, methods, NATIVE_METHODS_COUNT);
72 }
73
74
75 /*
76  * Class:     java/lang/VMObject
77  * Method:    getClass
78  * Signature: (Ljava/lang/Object;)Ljava/lang/Class;
79  */
80 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_VMObject_getClass(JNIEnv *env, jclass clazz, java_lang_Object *obj)
81 {
82         return _Jv_java_lang_Object_getClass(obj);
83 }
84
85
86 /*
87  * Class:     java/lang/VMObject
88  * Method:    clone
89  * Signature: (Ljava/lang/Cloneable;)Ljava/lang/Object;
90  */
91 JNIEXPORT java_lang_Object* JNICALL Java_java_lang_VMObject_clone(JNIEnv *env, jclass clazz, java_lang_Cloneable *this)
92 {
93         return _Jv_java_lang_Object_clone(this);
94 }
95
96
97 /*
98  * Class:     java/lang/VMObject
99  * Method:    notify
100  * Signature: (Ljava/lang/Object;)V
101  */
102 JNIEXPORT void JNICALL Java_java_lang_VMObject_notify(JNIEnv *env, jclass clazz, java_lang_Object *this)
103 {
104         _Jv_java_lang_Object_notify(this);
105 }
106
107
108 /*
109  * Class:     java/lang/VMObject
110  * Method:    notifyAll
111  * Signature: (Ljava/lang/Object;)V
112  */
113 JNIEXPORT void JNICALL Java_java_lang_VMObject_notifyAll(JNIEnv *env, jclass clazz, java_lang_Object *this)
114 {
115         _Jv_java_lang_Object_notifyAll(this);
116 }
117
118
119 /*
120  * Class:     java/lang/VMObject
121  * Method:    wait
122  * Signature: (Ljava/lang/Object;JI)V
123  */
124 JNIEXPORT void JNICALL Java_java_lang_VMObject_wait(JNIEnv *env, jclass clazz, java_lang_Object *o, int64_t ms, int32_t ns)
125 {
126         _Jv_java_lang_Object_wait(o, ms, ns);
127 }
128
129
130 /*
131  * These are local overrides for various environment variables in Emacs.
132  * Please do not remove this and leave it at the end of the file, where
133  * Emacs will automagically detect them.
134  * ---------------------------------------------------------------------
135  * Local variables:
136  * mode: c
137  * indent-tabs-mode: t
138  * c-basic-offset: 4
139  * tab-width: 4
140  * End:
141  */