* Removed all Id tags.
[cacao.git] / src / threads / native / lock.h
1 /* src/threads/native/lock.h - lock implementation
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 */
26
27
28 #ifndef _LOCK_H
29 #define _LOCK_H
30
31 #include "config.h"
32
33 #include <pthread.h>
34
35 #include "vm/types.h"
36
37 #include "vm/global.h"
38
39
40
41 /* typedefs *******************************************************************/
42
43 typedef struct lock_record_t             lock_record_t;
44 typedef struct lock_waiter_t             lock_waiter_t;
45 typedef struct lock_hashtable_t          lock_hashtable_t;
46
47
48 /* lock_waiter_t ***************************************************************
49
50    List node for storing a waiting thread.
51
52 *******************************************************************************/
53
54 struct lock_waiter_t {
55         struct threadobject *waiter;         /* the waiting thread                */
56         lock_waiter_t       *next;           /* next in list                      */
57 };
58
59
60 /* lock_record_t ***************************************************************
61
62    Lock record struct representing an inflated ("fat") lock.
63
64 *******************************************************************************/
65
66 struct lock_record_t {
67         java_object_t       *object;             /* object for which this lock is */
68         struct threadobject *owner;              /* current owner of this monitor */
69         s4                   count;              /* recursive lock count          */
70         pthread_mutex_t      mutex;              /* mutex for synchronizing       */
71         lock_waiter_t       *waiters;            /* list of threads waiting       */
72         lock_record_t       *hashlink;           /* next record in hash chain     */
73 };
74
75
76 /* lock_hashtable_t ************************************************************
77  
78    The global hashtable mapping objects to lock records.
79
80 *******************************************************************************/
81
82 struct lock_hashtable_t {
83         pthread_mutex_t      mutex;       /* mutex for synch. access to the table */
84         u4                   size;        /* number of slots                      */
85         u4                   entries;     /* current number of entries            */
86         lock_record_t      **ptr;         /* the table of slots, uses ext. chain. */
87 };
88
89
90 /* defines ********************************************************************/
91
92 #define LOCK_INIT_OBJECT_LOCK(o) lock_init_object_lock((java_object_t *) (o))
93
94 #define LOCK_MONITOR_ENTER(o)    lock_monitor_enter((java_object_t *) (o))
95 #define LOCK_MONITOR_EXIT(o)     lock_monitor_exit((java_object_t *) (o))
96
97 #endif /* _LOCK_H */
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  */