[project @ 2005-10-21 15:18:54 by simonmar]
[ghc-hetmet.git] / ghc / includes / OSThreads.h
1 /* ---------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 2001
4  *
5  * Accessing OS threads functionality in a (mostly) OS-independent
6  * manner. 
7  * 
8  * --------------------------------------------------------------------------*/
9
10 #ifndef __OSTHREADS_H__
11 #define __OSTHREADS_H__
12
13 #if defined(THREADED_RTS) /* to the end */
14
15 # if defined(HAVE_PTHREAD_H) && !defined(WANT_NATIVE_WIN32_THREADS)
16
17 #include <pthread.h>
18
19 typedef pthread_cond_t  Condition;
20 typedef pthread_mutex_t Mutex;
21 typedef pthread_t       OSThreadId;
22 typedef pthread_key_t   ThreadLocalKey;
23
24 #define OSThreadProcAttr /* nothing */
25
26 #define INIT_MUTEX_VAR      PTHREAD_MUTEX_INITIALIZER
27 #define INIT_COND_VAR       PTHREAD_COND_INITIALIZER
28
29 #ifdef LOCK_DEBUG
30
31 #define ACQUIRE_LOCK(mutex) \
32   debugBelch("ACQUIRE_LOCK(0x%p) %s %d\n", mutex,__FILE__,__LINE__); \
33   pthread_mutex_lock(mutex)
34 #define RELEASE_LOCK(mutex) \
35   debugBelch("RELEASE_LOCK(0x%p) %s %d\n", mutex,__FILE__,__LINE__); \
36   pthread_mutex_unlock(mutex)
37 #define ASSERT_LOCK_HELD(mutex) /* nothing */
38
39 #elif defined(DEBUG) && defined(linux_HOST_OS)
40 #include <errno.h>
41 /* 
42  * On Linux, we can use extensions to determine whether we already
43  * hold a lock or not, which is useful for debugging.
44  */
45 #define ACQUIRE_LOCK(mutex) \
46   if (pthread_mutex_lock(mutex) == EDEADLK) { \
47     barf("multiple ACQUIRE_LOCK: %s %d", __FILE__,__LINE__); \
48   }
49 #define RELEASE_LOCK(mutex) \
50   if (pthread_mutex_unlock(mutex) != 0) { \
51     barf("RELEASE_LOCK: I do not own this lock: %s %d", __FILE__,__LINE__); \
52   }
53
54 #define ASSERT_LOCK_HELD(mutex) ASSERT(pthread_mutex_lock(mutex) == EDEADLK)
55
56 #define ASSERT_LOCK_NOTHELD(mutex)              \
57   if (pthread_mutex_lock(mutex) != EDEADLK) {   \
58      pthread_mutex_unlock(mutex);               \
59   } else {                                      \
60     ASSERT(0);                                  \
61   }
62
63
64 #else
65
66 #define ACQUIRE_LOCK(mutex) pthread_mutex_lock(mutex)
67 #define RELEASE_LOCK(mutex) pthread_mutex_unlock(mutex)
68 #define ASSERT_LOCK_HELD(mutex) /* nothing */
69
70 #endif
71
72 # elif defined(HAVE_WINDOWS_H)
73 #include <windows.h>
74
75 typedef HANDLE Condition;
76 typedef HANDLE Mutex;
77 typedef DWORD OSThreadId;
78 typedef DWORD ThreadLocalKey;
79
80 #define OSThreadProcAttr __stdcall
81
82 #define INIT_MUTEX_VAR 0
83 #define INIT_COND_VAR  0
84
85 #define ACQUIRE_LOCK(mutex)                                     \
86     if (WaitForSingleObject(*mutex,INFINITE) == WAIT_FAILED) {  \
87         barf("WaitForSingleObject: %d", GetLastError());        \
88     }
89
90 #define RELEASE_LOCK(mutex)                             \
91     if (ReleaseMutex(*mutex) == 0) {                    \
92         barf("ReleaseMutex: %d", GetLastError());       \
93     }
94
95 #define ASSERT_LOCK_HELD(mutex) /* nothing */
96
97 # else
98 #  error "Threads not supported"
99 # endif
100
101 //
102 // General thread operations
103 //
104 extern OSThreadId osThreadId      ( void );
105 extern void shutdownThread        ( void );
106 extern void yieldThread           ( void );
107
108 typedef void OSThreadProcAttr OSThreadProc(void *);
109
110 extern int  createOSThread        ( OSThreadId* tid, 
111                                     OSThreadProc *startProc, void *param);
112
113 //
114 // Condition Variables
115 //
116 extern void initCondition         ( Condition* pCond );
117 extern void closeCondition        ( Condition* pCond );
118 extern rtsBool broadcastCondition ( Condition* pCond );
119 extern rtsBool signalCondition    ( Condition* pCond );
120 extern rtsBool waitCondition      ( Condition* pCond, 
121                                     Mutex* pMut );
122
123 //
124 // Mutexes
125 //
126 extern void initMutex             ( Mutex* pMut );
127
128 //
129 // Thread-local storage
130 //
131 void  newThreadLocalKey (ThreadLocalKey *key);
132 void *getThreadLocalVar (ThreadLocalKey *key);
133 void  setThreadLocalVar (ThreadLocalKey *key, void *value);
134
135 #else
136
137 #define ACQUIRE_LOCK(l)
138 #define RELEASE_LOCK(l)
139 #define ASSERT_LOCK_HELD(l)
140
141 #endif /* defined(RTS_SUPPORTS_THREADS) */
142
143 #endif /* __OSTHREADS_H__ */