* src/vm/jit/sparc64/md-abi.h: set TRACE_ARGS_NUM to 6.
[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 #include "native/jni.h"
34 #include "native/include/java_lang_Thread.h"
35
36 #if defined(WITH_CLASSPATH_GNU)
37 # include "native/include/java_lang_VMThread.h"
38 #endif
39
40 #include "threads/threads-common.h"
41
42 #if defined(ENABLE_THREADS)
43 # include "threads/native/threads.h"
44 #endif
45
46 #include "vm/builtin.h"
47 #include "vm/stringlocal.h"
48
49 #include "vmcore/class.h"
50 #include "vmcore/utf8.h"
51
52
53 /* threads_create_thread *******************************************************
54
55    Creates a thread object with the given name.
56
57 *******************************************************************************/
58
59 threadobject *threads_create_thread(utf *name)
60 {
61         threadobject *thread;
62 #if defined(WITH_CLASSPATH_GNU)
63         java_lang_VMThread *vmt;
64 #endif
65
66         /* create the finalizer object */
67
68         thread = (threadobject *) builtin_new(class_java_lang_Thread);
69
70         if (thread == NULL)
71                 return NULL;
72
73 #if defined(WITH_CLASSPATH_GNU)
74         vmt = (java_lang_VMThread *) builtin_new(class_java_lang_VMThread);
75
76         if (vmt == NULL)
77                 return NULL;
78
79         vmt->thread = (java_lang_Thread *) thread;
80
81         thread->o.vmThread = vmt;
82 #endif
83
84         thread->flags      = THREAD_FLAG_DAEMON;
85
86         /* set java.lang.Thread fields */
87
88         thread->o.name     = javastring_new(name);
89 #if defined(ENABLE_JAVASE)
90         thread->o.daemon   = true;
91 #endif
92         thread->o.priority = NORM_PRIORITY;
93
94         /* return the thread object */
95
96         return thread;
97 }
98
99
100 /*
101  * These are local overrides for various environment variables in Emacs.
102  * Please do not remove this and leave it at the end of the file, where
103  * Emacs will automagically detect them.
104  * ---------------------------------------------------------------------
105  * Local variables:
106  * mode: c
107  * indent-tabs-mode: t
108  * c-basic-offset: 4
109  * tab-width: 4
110  * End:
111  * vim:noexpandtab:sw=4:ts=4:
112  */