* src/threads/threads-common.c (threads_get_current_tid): New
[cacao.git] / src / threads / threads-common.c
1 /* src/threads/threads-common.c - machine independent thread functions
2
3    Copyright (C) 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: signal.c 7246 2007-01-29 18:49:05Z twisti $
26
27 */
28
29
30 #include "config.h"
31 #include "vm/types.h"
32
33
34 #include "native/jni.h"
35 #include "native/include/java_lang_Thread.h"
36
37 #if defined(WITH_CLASSPATH_GNU)
38 # include "native/include/java_lang_VMThread.h"
39 #endif
40
41 #include "threads/threads-common.h"
42
43 #if defined(ENABLE_THREADS)
44 # include "threads/native/threads.h"
45 #endif
46
47 #include "vm/builtin.h"
48 #include "vm/stringlocal.h"
49
50 #include "vmcore/class.h"
51 #include "vmcore/utf8.h"
52
53
54 /* threads_create_thread *******************************************************
55
56    Creates a thread object with the given name.
57
58 *******************************************************************************/
59 #if defined(ENABLE_THREADS)
60 threadobject *threads_create_thread(utf *name)
61 {
62         threadobject *thread;
63 #if defined(WITH_CLASSPATH_GNU)
64         java_lang_VMThread *vmt;
65 #endif
66
67         /* create the finalizer object */
68
69         thread = (threadobject *) builtin_new(class_java_lang_Thread);
70
71         if (thread == NULL)
72                 return NULL;
73
74 #if defined(WITH_CLASSPATH_GNU)
75         vmt = (java_lang_VMThread *) builtin_new(class_java_lang_VMThread);
76
77         if (vmt == NULL)
78                 return NULL;
79
80         vmt->thread = (java_lang_Thread *) thread;
81
82         thread->o.vmThread = vmt;
83 #endif
84
85         thread->flags      = THREAD_FLAG_DAEMON;
86
87         /* set java.lang.Thread fields */
88
89         thread->o.name     = javastring_new(name);
90 #if defined(ENABLE_JAVASE)
91         thread->o.daemon   = true;
92 #endif
93         thread->o.priority = NORM_PRIORITY;
94
95         /* return the thread object */
96
97         return thread;
98 }
99 #endif
100
101
102 /* threads_get_current_tid *****************************************************
103
104    Return the tid of the current thread.
105    
106    RETURN VALUE:
107        the current tid
108
109 *******************************************************************************/
110
111 ptrint threads_get_current_tid(void)
112 {
113         threadobject *thread;
114
115         thread = THREADOBJECT;
116
117         return (ptrint) thread->tid;
118 }
119
120
121 /*
122  * These are local overrides for various environment variables in Emacs.
123  * Please do not remove this and leave it at the end of the file, where
124  * Emacs will automagically detect them.
125  * ---------------------------------------------------------------------
126  * Local variables:
127  * mode: c
128  * indent-tabs-mode: t
129  * c-basic-offset: 4
130  * tab-width: 4
131  * End:
132  * vim:noexpandtab:sw=4:ts=4:
133  */