97a2da00f59209ca385af5f3c8f5532dcde25e1f
[cacao.git] / src / native / vm / gnu / java_lang_VMThread.c
1 /* src/native/vm/gnu/java_lang_VMThread.c - java/lang/VMThread
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_VMThread.c 6228 2006-12-26 19:56:58Z twisti $
32
33 */
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "native/jni.h"
40 #include "native/native.h"
41 #include "native/include/java_lang_ThreadGroup.h"
42 #include "native/include/java_lang_Object.h"            /* java_lang_Thread.h */
43 #include "native/include/java_lang_Throwable.h"         /* java_lang_Thread.h */
44 #include "native/include/java_lang_VMThread.h"
45 #include "native/include/java_lang_Thread.h"
46 #include "native/vm/java_lang_Thread.h"
47
48 #if defined(ENABLE_THREADS)
49 # include "threads/native/threads.h"
50 #endif
51
52
53 /*
54  * Class:     java/lang/VMThread
55  * Method:    countStackFrames
56  * Signature: ()I
57  */
58 JNIEXPORT s4 JNICALL Java_java_lang_VMThread_countStackFrames(JNIEnv *env, java_lang_VMThread *this)
59 {
60     return _Jv_java_lang_Thread_countStackFrames(this->thread);
61 }
62
63
64 /*
65  * Class:     java/lang/VMThread
66  * Method:    start
67  * Signature: (J)V
68  */
69 JNIEXPORT void JNICALL Java_java_lang_VMThread_start(JNIEnv *env, java_lang_VMThread *this, s8 stacksize)
70 {
71         _Jv_java_lang_Thread_start(this->thread, stacksize);
72 }
73
74
75 /*
76  * Class:     java/lang/VMThread
77  * Method:    interrupt
78  * Signature: ()V
79  */
80 JNIEXPORT void JNICALL Java_java_lang_VMThread_interrupt(JNIEnv *env, java_lang_VMThread *this)
81 {
82         _Jv_java_lang_Thread_interrupt(this->thread);
83 }
84
85
86 /*
87  * Class:     java/lang/VMThread
88  * Method:    isInterrupted
89  * Signature: ()Z
90  */
91 JNIEXPORT s4 JNICALL Java_java_lang_VMThread_isInterrupted(JNIEnv *env, java_lang_VMThread *this)
92 {
93         return _Jv_java_lang_Thread_isInterrupted(this->thread);
94 }
95
96
97 /*
98  * Class:     java/lang/VMThread
99  * Method:    suspend
100  * Signature: ()V
101  */
102 JNIEXPORT void JNICALL Java_java_lang_VMThread_suspend(JNIEnv *env, java_lang_VMThread *this)
103 {
104         _Jv_java_lang_Thread_suspend(this->thread);
105 }
106
107
108 /*
109  * Class:     java/lang/VMThread
110  * Method:    resume
111  * Signature: ()V
112  */
113 JNIEXPORT void JNICALL Java_java_lang_VMThread_resume(JNIEnv *env, java_lang_VMThread *this)
114 {
115         _Jv_java_lang_Thread_resume(this->thread);
116 }
117
118
119 /*
120  * Class:     java/lang/VMThread
121  * Method:    nativeSetPriority
122  * Signature: (I)V
123  */
124 JNIEXPORT void JNICALL Java_java_lang_VMThread_nativeSetPriority(JNIEnv *env, java_lang_VMThread *this, s4 priority)
125 {
126         _Jv_java_lang_Thread_setPriority(this->thread, priority);
127 }
128
129
130 /*
131  * Class:     java/lang/VMThread
132  * Method:    nativeStop
133  * Signature: (Ljava/lang/Object;)V
134  */
135 JNIEXPORT void JNICALL Java_java_lang_VMThread_nativeStop(JNIEnv *env, java_lang_VMThread *this, java_lang_Throwable *t)
136 {
137         _Jv_java_lang_Thread_stop(this->thread, t);
138 }
139
140
141 /*
142  * Class:     java/lang/VMThread
143  * Method:    currentThread
144  * Signature: ()Ljava/lang/Thread;
145  */
146 JNIEXPORT java_lang_Thread* JNICALL Java_java_lang_VMThread_currentThread(JNIEnv *env, jclass clazz)
147 {
148         return _Jv_java_lang_Thread_currentThread();
149 }
150
151
152 /*
153  * Class:     java/lang/VMThread
154  * Method:    yield
155  * Signature: ()V
156  */
157 JNIEXPORT void JNICALL Java_java_lang_VMThread_yield(JNIEnv *env, jclass clazz)
158 {
159         _Jv_java_lang_Thread_yield();
160 }
161
162
163 /*
164  * Class:     java/lang/VMThread
165  * Method:    interrupted
166  * Signature: ()Z
167  */
168 JNIEXPORT s4 JNICALL Java_java_lang_VMThread_interrupted(JNIEnv *env, jclass clazz)
169 {
170         return _Jv_java_lang_Thread_interrupted();
171 }
172
173
174 /*
175  * Class:     java/lang/VMThread
176  * Method:    holdsLock
177  * Signature: (Ljava/lang/Object;)Z
178  */
179 JNIEXPORT s4 JNICALL Java_java_lang_VMThread_holdsLock(JNIEnv *env, jclass clazz, java_lang_Object* o)
180 {
181         return _Jv_java_lang_Thread_holdsLock(o);
182 }
183
184
185 /*
186  * Class:     java/lang/VMThread
187  * Method:    getState
188  * Signature: ()Ljava/lang/String;
189  */
190 JNIEXPORT java_lang_String* JNICALL Java_java_lang_VMThread_getState(JNIEnv *env, java_lang_VMThread *this)
191 {
192         return _Jv_java_lang_Thread_getState(this->thread);
193 }
194
195
196 /*
197  * These are local overrides for various environment variables in Emacs.
198  * Please do not remove this and leave it at the end of the file, where
199  * Emacs will automagically detect them.
200  * ---------------------------------------------------------------------
201  * Local variables:
202  * mode: c
203  * indent-tabs-mode: t
204  * c-basic-offset: 4
205  * tab-width: 4
206  * End:
207  */