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