* src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
[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 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    Contact: cacao@cacaojvm.org
26
27    Authors: Roman Obermaiser
28             Joseph Wenninger
29             Christian Thalinger
30
31    $Id: java_lang_VMObject.c 6221 2006-12-21 15:56:38Z twisti $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "native/jni.h"
40 #include "native/include/java_lang_Class.h"
41 #include "native/include/java_lang_Cloneable.h"
42 #include "native/include/java_lang_Object.h"
43 #include "native/vm/java_lang_Object.h"
44
45
46 /*
47  * Class:     java/lang/VMObject
48  * Method:    getClass
49  * Signature: (Ljava/lang/Object;)Ljava/lang/Class;
50  */
51 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_VMObject_getClass(JNIEnv *env, jclass clazz, java_lang_Object *obj)
52 {
53         return _Jv_java_lang_Object_getClass(obj);
54 }
55
56
57 /*
58  * Class:     java/lang/VMObject
59  * Method:    clone
60  * Signature: (Ljava/lang/Cloneable;)Ljava/lang/Object;
61  */
62 JNIEXPORT java_lang_Object* JNICALL Java_java_lang_VMObject_clone(JNIEnv *env, jclass clazz, java_lang_Cloneable *this)
63 {
64         return _Jv_java_lang_Object_clone(this);
65 }
66
67
68 /*
69  * Class:     java/lang/VMObject
70  * Method:    notify
71  * Signature: ()V
72  */
73 JNIEXPORT void JNICALL Java_java_lang_VMObject_notify(JNIEnv *env, jclass clazz, java_lang_Object *this)
74 {
75         _Jv_java_lang_Object_notify(this);
76 }
77
78
79 /*
80  * Class:     java/lang/VMObject
81  * Method:    notifyAll
82  * Signature: ()V
83  */
84 JNIEXPORT void JNICALL Java_java_lang_VMObject_notifyAll(JNIEnv *env, jclass clazz, java_lang_Object *this)
85 {
86         _Jv_java_lang_Object_notifyAll(this);
87 }
88
89
90 /*
91  * Class:     java/lang/VMObject
92  * Method:    wait
93  * Signature: (Ljava/lang/Object;JI)V
94  */
95 JNIEXPORT void JNICALL Java_java_lang_VMObject_wait(JNIEnv *env, jclass clazz, java_lang_Object *o, s8 ms, s4 ns)
96 {
97         _Jv_java_lang_Object_wait(o, ms, ns);
98 }
99
100
101 /*
102  * These are local overrides for various environment variables in Emacs.
103  * Please do not remove this and leave it at the end of the file, where
104  * Emacs will automagically detect them.
105  * ---------------------------------------------------------------------
106  * Local variables:
107  * mode: c
108  * indent-tabs-mode: t
109  * c-basic-offset: 4
110  * tab-width: 4
111  * End:
112  */