* src/native/vm/cldc1.1/java_lang_Object.c (notifyAll): Implemented.
[cacao.git] / src / native / vm / cldc1.1 / java_lang_Object.c
1 /* src/native/vm/cldc1.1/java_lang_Object.c
2
3    Copyright (C) 2006, 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
32 #include <stdlib.h>
33
34 #include "vm/types.h"
35
36 #include "native/jni.h"
37
38 #include "native/include/java_lang_String.h" /* required by java_lang_Class.h */
39 #include "native/include/java_lang_Class.h"
40 #include "native/include/java_lang_Object.h"
41
42 #include "native/vm/java_lang_Object.h"
43
44
45 /*
46  * Class:     java/lang/VMObject
47  * Method:    getClass
48  * Signature: (Ljava/lang/Object;)Ljava/lang/Class;
49  */
50 JNIEXPORT java_lang_Class* JNICALL Java_java_lang_Object_getClass(JNIEnv *env, java_lang_Object *obj)
51 {
52         java_objectheader *o;
53         classinfo         *c;
54
55         o = (java_objectheader *) obj;
56
57         if (o == NULL)
58                 return NULL;
59
60         c = o->vftbl->class;
61
62         return (java_lang_Class *) c;
63 }
64
65
66 /*
67  * Class:     java/lang/Object
68  * Method:    hashCode
69  * Signature: ()I
70  */
71 JNIEXPORT s4 JNICALL Java_java_lang_Object_hashCode(JNIEnv *env, java_lang_Object *this)
72 {
73         return (s4) ((ptrint) this);
74 }
75
76
77 /*
78  * Class:     java/lang/Object
79  * Method:    notify
80  * Signature: ()V
81  */
82 JNIEXPORT void JNICALL Java_java_lang_Object_notify(JNIEnv *env, java_lang_Object *this)
83 {
84         _Jv_java_lang_Object_notify(this);
85 }
86
87
88 /*
89  * Class:     java/lang/Object
90  * Method:    notifyAll
91  * Signature: ()V
92  */
93 JNIEXPORT void JNICALL Java_java_lang_Object_notifyAll(JNIEnv *env, java_lang_Object *this)
94 {
95         _Jv_java_lang_Object_notifyAll(this);
96 }
97
98
99 /*
100  * Class:     java/lang/Object
101  * Method:    wait
102  * Signature: (J)V
103  */
104 JNIEXPORT void JNICALL Java_java_lang_Object_wait(JNIEnv *env, java_lang_Object *this, s8 timeout)
105 {
106         _Jv_java_lang_Object_wait(this, timeout, 0);
107 }
108
109
110 /*
111  * These are local overrides for various environment variables in Emacs.
112  * Please do not remove this and leave it at the end of the file, where
113  * Emacs will automagically detect them.
114  * ---------------------------------------------------------------------
115  * Local variables:
116  * mode: c
117  * indent-tabs-mode: t
118  * c-basic-offset: 4
119  * tab-width: 4
120  * End:
121  * vim:noexpandtab:sw=4:ts=4:
122  */