Merged trunk and subtype.
[cacao.git] / src / threads / none / thread-none.h
1 /* src/threads/none/thread-none.h - fake threads header
2
3    Copyright (C) 1996-2005, 2006, 2007, 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _THREAD_NONE_H
27 #define _THREAD_NONE_H
28
29 #include "config.h"
30
31 #include <stdint.h>
32
33 #include "vm/types.h"
34
35 #include "vm/jit/builtin.hpp"
36 #include "vm/globals.hpp"
37
38 #include "vm/jit/stacktrace.hpp"
39
40
41 /* define some stuff we need to no-ops ****************************************/
42
43 #define THREADOBJECT      NULL
44
45 #define threadobject      void
46
47
48 /* native-world flags *********************************************************/
49
50 #define THREAD_NATIVEWORLD_ENTER /*nop*/
51 #define THREAD_NATIVEWORLD_EXIT  /*nop*/
52
53
54 #if defined(ENABLE_DEBUG_FILTER)
55 extern u2 _no_threads_filterverbosecallctr[2];
56 #define FILTERVERBOSECALLCTR (_no_threads_filterverbosecallctr)
57 #endif
58
59 /* state for trace java call **************************************************/
60
61 #if !defined(NDEBUG)
62 extern s4 _no_threads_tracejavacallindent;
63 #define TRACEJAVACALLINDENT (_no_threads_tracejavacallindent)
64
65 extern u4 _no_threads_tracejavacallcount;
66 #define TRACEJAVACALLCOUNT (_no_threads_tracejavacallcount)
67 #endif
68
69
70 /* global variables ***********************************************************/
71
72 extern stackframeinfo_t *_no_threads_stackframeinfo;
73
74
75 /* inline functions ***********************************************************/
76
77 inline static java_handle_t *thread_get_current_object(void)
78 {
79         java_handle_t *o;
80
81         /* We return a fake java.lang.Thread object, otherwise we get
82            NullPointerException's in GNU Classpath. */
83
84         o = builtin_new(class_java_lang_Thread);
85
86         return o;
87 }
88
89 inline static stackframeinfo_t *threads_get_current_stackframeinfo(void)
90 {
91         return _no_threads_stackframeinfo;
92 }
93
94 inline static void threads_set_current_stackframeinfo(stackframeinfo_t *sfi)
95 {
96         _no_threads_stackframeinfo = sfi;
97 }
98
99 #endif /* _THREAD_NONE_H */
100
101
102 /*
103  * These are local overrides for various environment variables in Emacs.
104  * Please do not remove this and leave it at the end of the file, where
105  * Emacs will automagically detect them.
106  * ---------------------------------------------------------------------
107  * Local variables:
108  * mode: c
109  * indent-tabs-mode: t
110  * c-basic-offset: 4
111  * tab-width: 4
112  * End:
113  */