c6fb86320189c8a2f54b9b0cf1299c00898fca5a
[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 #if defined(ENABLE_GC_CACAO)
74         assert(0);
75 #else
76         return (s4) ((ptrint) this);
77 #endif
78 }
79
80
81 /*
82  * Class:     java/lang/Object
83  * Method:    notify
84  * Signature: ()V
85  */
86 JNIEXPORT void JNICALL Java_java_lang_Object_notify(JNIEnv *env, java_lang_Object *this)
87 {
88         _Jv_java_lang_Object_notify(this);
89 }
90
91
92 #if 0
93 /*
94  * Class:     java/lang/Object
95  * Method:    notifyAll
96  * Signature: ()V
97  */
98 JNIEXPORT void JNICALL Java_java_lang_Object_notifyAll(JNIEnv *env, struct java_lang_Object* this);
99 #endif
100
101
102 /*
103  * Class:     java/lang/Object
104  * Method:    wait
105  * Signature: (J)V
106  */
107 JNIEXPORT void JNICALL Java_java_lang_Object_wait(JNIEnv *env, java_lang_Object *this, s8 timeout)
108 {
109         _Jv_java_lang_Object_wait(this, timeout, 0);
110 }
111
112
113 /*
114  * These are local overrides for various environment variables in Emacs.
115  * Please do not remove this and leave it at the end of the file, where
116  * Emacs will automagically detect them.
117  * ---------------------------------------------------------------------
118  * Local variables:
119  * mode: c
120  * indent-tabs-mode: t
121  * c-basic-offset: 4
122  * tab-width: 4
123  * End:
124  * vim:noexpandtab:sw=4:ts=4:
125  */