* src/threads/native/generic-primitives.h
[cacao.git] / src / threads / native / generic-primitives.h
1 /* src/threads/native/generic-primitives.h - machine independent atomic
2                                              operations
3
4    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
5    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
6    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
7    J. Wenninger, Institut f. Computersprachen - TU Wien
8
9    This file is part of CACAO.
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2, or (at
14    your option) any later version.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24    02110-1301, USA.
25
26    Contact: cacao@cacaojvm.org
27
28    Authors: Christian Thalinger
29             Anton Ertl
30
31    Changes: 
32
33
34 */
35
36
37 #ifndef _MACHINE_INSTR_H
38 #define _MACHINE_INSTR_H
39
40 #include <pthread.h>
41
42 extern pthread_mutex_t _cas_lock;
43 extern pthread_mutex_t _mb_lock;
44
45
46 static inline long compare_and_swap(volatile long *p, long oldval, long newval)
47 {
48   long ret;
49
50   pthread_mutex_lock(&_cas_lock);
51
52   /* do the compare-and-swap */
53
54   ret = *p;
55
56   if (oldval == ret)
57     *p = newval;
58
59   pthread_mutex_unlock(&_cas_lock);
60
61   return ret;
62 }
63
64
65 #define MEMORY_BARRIER()                  (pthread_mutex_lock(&_mb_lock), \
66                                            pthread_mutex_unlock(&_mb_lock))
67 #define STORE_ORDER_BARRIER()             MEMORY_BARRIER()
68 #define MEMORY_BARRIER_AFTER_ATOMIC()     /* nothing */
69
70 #endif /* _MACHINE_INSTR_H */
71
72
73 /*
74  * These are local overrides for various environment variables in Emacs.
75  * Please do not remove this and leave it at the end of the file, where
76  * Emacs will automagically detect them.
77  * ---------------------------------------------------------------------
78  * Local variables:
79  * mode: c
80  * indent-tabs-mode: t
81  * c-basic-offset: 4
82  * tab-width: 4
83  * End:
84  */