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