e8b06e9139103f2ec431fd5e9c4d5fd2e8c23767
[cacao.git] / src / threads / none / threads.h
1 /* src/threads/none/threads.h - fake threads header
2
3    Copyright (C) 1996-2005, 2006, 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: threads.h 4405 2006-02-03 12:46:22Z twisti $
26
27 */
28
29
30 #ifndef _THREADS_H
31 #define _THREADS_H
32
33 #include "config.h"
34 #include "vm/types.h"
35 #include "vm/global.h"
36
37
38 /* define some stuff we need to no-ops ****************************************/
39
40 #define THREADSPECIFIC
41 #define THREADOBJECT      NULL
42 #define THREADINFO        NULL
43
44 #define threadobject      void
45
46
47 /* exception pointer **********************************************************/
48
49 extern java_object_t        *_no_threads_exceptionptr;
50
51 #define exceptionptr        (&_no_threads_exceptionptr)
52
53
54 /* stackframeinfo *************************************************************/
55
56 struct stackframeinfo;
57
58 extern struct stackframeinfo       *_no_threads_stackframeinfo;
59
60 #define STACKFRAMEINFO      (_no_threads_stackframeinfo)
61
62 #if defined(ENABLE_DEBUG_FILTER)
63 extern u2 _no_threads_filterverbosecallctr[2];
64 #define FILTERVERBOSECALLCTR (_no_threads_filterverbosecallctr)
65 #endif
66
67 /* state for trace java call **************************************************/
68
69 #if !defined(NDEBUG)
70 extern s4 _no_threads_tracejavacallindent;
71 #define TRACEJAVACALLINDENT (_no_threads_tracejavacallindent)
72
73 extern u4 _no_threads_tracejavacallcount;
74 #define TRACEJAVACALLCOUNT (_no_threads_tracejavacallcount)
75 #endif
76
77 #endif /* _THREADS_H */
78
79
80 /*
81  * These are local overrides for various environment variables in Emacs.
82  * Please do not remove this and leave it at the end of the file, where
83  * Emacs will automagically detect them.
84  * ---------------------------------------------------------------------
85  * Local variables:
86  * mode: c
87  * indent-tabs-mode: t
88  * c-basic-offset: 4
89  * tab-width: 4
90  * End:
91  */