1
by brian
clean slate |
1 |
/* Copyright (C) 2000 MySQL AB
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
14 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
15 |
||
16 |
/* Defines to make different thread packages compatible */
|
|
17 |
||
18 |
#ifndef _my_pthread_h
|
|
19 |
#define _my_pthread_h
|
|
20 |
||
549
by Monty Taylor
Took gettext.h out of header files. |
21 |
#include <stdint.h> |
22 |
#include <unistd.h> |
|
632.1.11
by Monty Taylor
Fixed Sun Studio warnings in mysys. |
23 |
#include <signal.h> |
549
by Monty Taylor
Took gettext.h out of header files. |
24 |
|
1
by brian
clean slate |
25 |
#ifndef ETIME
|
26 |
#define ETIME ETIMEDOUT /* For FreeBSD */ |
|
27 |
#endif
|
|
28 |
||
29 |
#ifdef __cplusplus
|
|
30 |
#define EXTERNC extern "C"
|
|
31 |
extern "C" { |
|
32 |
#else
|
|
33 |
#define EXTERNC
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
34 |
#endif /* __cplusplus */ |
1
by brian
clean slate |
35 |
|
36 |
#include <pthread.h> |
|
37 |
#ifndef _REENTRANT
|
|
38 |
#define _REENTRANT
|
|
39 |
#endif
|
|
40 |
#ifdef HAVE_SCHED_H
|
|
41 |
#include <sched.h> |
|
42 |
#endif
|
|
43 |
#ifdef HAVE_SYNCH_H
|
|
44 |
#include <synch.h> |
|
45 |
#endif
|
|
46 |
||
47 |
#define pthread_key(T,V) pthread_key_t V
|
|
598.1.1
by Super-User
Fixed solaris build crap. |
48 |
#define pthread_handler_t void *
|
1
by brian
clean slate |
49 |
typedef void *(* pthread_handler)(void *); |
50 |
||
51 |
#if defined(HAVE_SIGTHREADMASK) && !defined(HAVE_PTHREAD_SIGMASK)
|
|
52 |
#define pthread_sigmask(A,B,C) sigthreadmask((A),(B),(C))
|
|
53 |
#endif
|
|
54 |
||
55 |
||
56 |
/*
|
|
57 |
We define my_sigset() and use that instead of the system sigset() so that
|
|
58 |
we can favor an implementation based on sigaction(). On some systems, such
|
|
59 |
as Mac OS X, sigset() results in flags such as SA_RESTART being set, and
|
|
60 |
we want to make sure that no such flags are set.
|
|
61 |
*/
|
|
62 |
#if defined(HAVE_SIGACTION) && !defined(my_sigset)
|
|
63 |
#define my_sigset(A,B) do { struct sigaction l_s; sigset_t l_set; int l_rc; \
|
|
51.3.28
by Jay Pipes
DBUG entirely removed from server and client |
64 |
assert((A) != 0); \
|
1
by brian
clean slate |
65 |
sigemptyset(&l_set); \
|
66 |
l_s.sa_handler = (B); \
|
|
67 |
l_s.sa_mask = l_set; \
|
|
68 |
l_s.sa_flags = 0; \
|
|
69 |
l_rc= sigaction((A), &l_s, (struct sigaction *) NULL);\
|
|
51.3.28
by Jay Pipes
DBUG entirely removed from server and client |
70 |
assert(l_rc == 0); \
|
1
by brian
clean slate |
71 |
} while (0)
|
72 |
#elif defined(HAVE_SIGSET) && !defined(my_sigset)
|
|
73 |
#define my_sigset(A,B) sigset((A),(B))
|
|
74 |
#elif !defined(my_sigset)
|
|
75 |
#define my_sigset(A,B) signal((A),(B))
|
|
76 |
#endif
|
|
77 |
||
78 |
#ifndef my_pthread_attr_setprio
|
|
79 |
#ifdef HAVE_PTHREAD_ATTR_SETPRIO
|
|
80 |
#define my_pthread_attr_setprio(A,B) pthread_attr_setprio((A),(B))
|
|
81 |
#else
|
|
82 |
extern void my_pthread_attr_setprio(pthread_attr_t *attr, int priority); |
|
83 |
#endif
|
|
84 |
#endif
|
|
85 |
||
86 |
#if !defined(HAVE_PTHREAD_YIELD_ONE_ARG) && !defined(HAVE_PTHREAD_YIELD_ZERO_ARG)
|
|
87 |
/* no pthread_yield() available */
|
|
88 |
#ifdef HAVE_SCHED_YIELD
|
|
89 |
#define pthread_yield() sched_yield()
|
|
90 |
#elif defined(HAVE_PTHREAD_YIELD_NP) /* can be Mac OS X */ |
|
91 |
#define pthread_yield() pthread_yield_np()
|
|
92 |
#endif
|
|
93 |
#endif
|
|
94 |
||
95 |
/*
|
|
96 |
The defines set_timespec and set_timespec_nsec should be used
|
|
97 |
for calculating an absolute time at which
|
|
98 |
pthread_cond_timedwait should timeout
|
|
99 |
*/
|
|
100 |
#ifndef set_timespec
|
|
101 |
#define set_timespec(ABSTIME,SEC) \
|
|
102 |
{\
|
|
103 |
struct timeval tv;\
|
|
104 |
gettimeofday(&tv,0);\
|
|
105 |
(ABSTIME).tv_sec=tv.tv_sec+(time_t) (SEC);\
|
|
106 |
(ABSTIME).tv_nsec=tv.tv_usec*1000;\
|
|
107 |
}
|
|
108 |
#endif /* !set_timespec */ |
|
109 |
#ifndef set_timespec_nsec
|
|
110 |
#define set_timespec_nsec(ABSTIME,NSEC) \
|
|
111 |
{\
|
|
151
by Brian Aker
Ulonglong to uint64_t |
112 |
uint64_t now= my_getsystime() + (NSEC/100); \
|
398.1.8
by Monty Taylor
Enabled -Wlong-long. |
113 |
(ABSTIME).tv_sec= (time_t) (now / 10000000UL); \
|
114 |
(ABSTIME).tv_nsec= (long) (now % 10000000UL * 100 + ((NSEC) % 100)); \
|
|
1
by brian
clean slate |
115 |
}
|
116 |
#endif /* !set_timespec_nsec */ |
|
117 |
||
118 |
/* safe_mutex adds checking to mutex for easier debugging */
|
|
119 |
||
120 |
typedef struct st_safe_mutex_t |
|
121 |
{
|
|
122 |
pthread_mutex_t global,mutex; |
|
123 |
const char *file; |
|
411
by Brian Aker
Removed legacy bits around enum. |
124 |
uint32_t line,count; |
1
by brian
clean slate |
125 |
pthread_t thread; |
126 |
} safe_mutex_t; |
|
127 |
||
128 |
int safe_mutex_init(safe_mutex_t *mp, const pthread_mutexattr_t *attr, |
|
411
by Brian Aker
Removed legacy bits around enum. |
129 |
const char *file, uint32_t line); |
130 |
int safe_mutex_lock(safe_mutex_t *mp, bool try_lock, const char *file, uint32_t line); |
|
131 |
int safe_mutex_unlock(safe_mutex_t *mp,const char *file, uint32_t line); |
|
132 |
int safe_mutex_destroy(safe_mutex_t *mp,const char *file, uint32_t line); |
|
1
by brian
clean slate |
133 |
int safe_cond_wait(pthread_cond_t *cond, safe_mutex_t *mp,const char *file, |
411
by Brian Aker
Removed legacy bits around enum. |
134 |
uint32_t line); |
1
by brian
clean slate |
135 |
int safe_cond_timedwait(pthread_cond_t *cond, safe_mutex_t *mp, |
411
by Brian Aker
Removed legacy bits around enum. |
136 |
struct timespec *abstime, const char *file, uint32_t line); |
1
by brian
clean slate |
137 |
void safe_mutex_global_init(void); |
549
by Monty Taylor
Took gettext.h out of header files. |
138 |
void safe_mutex_end(void); |
1
by brian
clean slate |
139 |
|
140 |
/* Wrappers if safe mutex is actually used */
|
|
141 |
#define safe_mutex_assert_owner(mp)
|
|
142 |
#define safe_mutex_assert_not_owner(mp)
|
|
143 |
||
144 |
/* READ-WRITE thread locking */
|
|
145 |
||
146 |
#ifndef HAVE_THR_SETCONCURRENCY
|
|
147 |
#define thr_setconcurrency(A) pthread_dummy(0)
|
|
148 |
#endif
|
|
149 |
#if !defined(HAVE_PTHREAD_ATTR_SETSTACKSIZE) && ! defined(pthread_attr_setstacksize)
|
|
150 |
#define pthread_attr_setstacksize(A,B) pthread_dummy(0)
|
|
151 |
#endif
|
|
152 |
||
153 |
/* Define mutex types, see my_thr_init.c */
|
|
970.1.4
by Brian Aker
Removed dependency on internal_lock for session to lookup global table value |
154 |
#ifdef THREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
|
1
by brian
clean slate |
155 |
extern pthread_mutexattr_t my_fast_mutexattr; |
156 |
#define MY_MUTEX_INIT_FAST &my_fast_mutexattr
|
|
157 |
#else
|
|
158 |
#define MY_MUTEX_INIT_FAST NULL
|
|
159 |
#endif
|
|
160 |
#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
|
|
161 |
extern pthread_mutexattr_t my_errorcheck_mutexattr; |
|
162 |
#define MY_MUTEX_INIT_ERRCHK &my_errorcheck_mutexattr
|
|
163 |
#else
|
|
164 |
#define MY_MUTEX_INIT_ERRCHK NULL
|
|
165 |
#endif
|
|
166 |
||
167 |
#ifndef ESRCH
|
|
168 |
/* Define it to something */
|
|
169 |
#define ESRCH 1
|
|
170 |
#endif
|
|
171 |
||
553
by Monty Taylor
Changed my_thread_id type. |
172 |
typedef uint64_t my_thread_id; |
1
by brian
clean slate |
173 |
|
146
by Brian Aker
my_bool cleanup. |
174 |
extern bool my_thread_global_init(void); |
1
by brian
clean slate |
175 |
extern void my_thread_global_end(void); |
146
by Brian Aker
my_bool cleanup. |
176 |
extern bool my_thread_init(void); |
1
by brian
clean slate |
177 |
extern void my_thread_end(void); |
178 |
extern const char *my_thread_name(void); |
|
179 |
extern my_thread_id my_thread_dbug_id(void); |
|
180 |
||
181 |
/* All thread specific variables are in the following struct */
|
|
182 |
||
183 |
#define THREAD_NAME_SIZE 10
|
|
184 |
/*
|
|
481.1.21
by Monty Taylor
Got rid of some size testing. |
185 |
Drizzle can survive with 32K, but some glibc libraries require > 128K stack
|
186 |
to resolve hostnames. Also recursive stored procedures needs stack.
|
|
1
by brian
clean slate |
187 |
*/
|
481.1.21
by Monty Taylor
Got rid of some size testing. |
188 |
#define DEFAULT_THREAD_STACK (256*INT32_C(1024))
|
1
by brian
clean slate |
189 |
|
190 |
struct st_my_thread_var |
|
191 |
{
|
|
192 |
pthread_cond_t suspend; |
|
193 |
pthread_mutex_t mutex; |
|
194 |
pthread_mutex_t * volatile current_mutex; |
|
195 |
pthread_cond_t * volatile current_cond; |
|
196 |
pthread_t pthread_self; |
|
197 |
my_thread_id id; |
|
198 |
int volatile abort; |
|
146
by Brian Aker
my_bool cleanup. |
199 |
bool init; |
1
by brian
clean slate |
200 |
struct st_my_thread_var *next,**prev; |
201 |
void *opt_info; |
|
202 |
};
|
|
203 |
||
520.4.43
by mordred
A set of Solaris fixes. |
204 |
extern struct st_my_thread_var *_my_thread_var(void); |
411
by Brian Aker
Removed legacy bits around enum. |
205 |
extern uint32_t my_thread_end_wait_time; |
1
by brian
clean slate |
206 |
#define my_thread_var (_my_thread_var())
|
207 |
/*
|
|
208 |
Keep track of shutdown,signal, and main threads so that my_end() will not
|
|
209 |
report errors with them
|
|
210 |
*/
|
|
211 |
||
212 |
/* Which kind of thread library is in use */
|
|
213 |
||
214 |
#define THD_LIB_OTHER 1
|
|
215 |
#define THD_LIB_NPTL 2
|
|
216 |
#define THD_LIB_LT 4
|
|
217 |
||
411
by Brian Aker
Removed legacy bits around enum. |
218 |
extern uint32_t thd_lib_detected; |
1
by brian
clean slate |
219 |
|
220 |
/*
|
|
221 |
thread_safe_xxx functions are for critical statistic or counters.
|
|
222 |
The implementation is guaranteed to be thread safe, on all platforms.
|
|
223 |
Note that the calling code should *not* assume the counter is protected
|
|
224 |
by the mutex given, as the implementation of these helpers may change
|
|
225 |
to use my_atomic operations instead.
|
|
226 |
*/
|
|
227 |
||
228 |
#ifndef thread_safe_increment
|
|
229 |
#define thread_safe_increment(V,L) \
|
|
230 |
(pthread_mutex_lock((L)), (V)++, pthread_mutex_unlock((L)))
|
|
231 |
#define thread_safe_decrement(V,L) \
|
|
232 |
(pthread_mutex_lock((L)), (V)--, pthread_mutex_unlock((L)))
|
|
233 |
#endif
|
|
234 |
||
235 |
#ifndef thread_safe_add
|
|
236 |
#define thread_safe_add(V,C,L) \
|
|
237 |
(pthread_mutex_lock((L)), (V)+=(C), pthread_mutex_unlock((L)))
|
|
238 |
#define thread_safe_sub(V,C,L) \
|
|
239 |
(pthread_mutex_lock((L)), (V)-=(C), pthread_mutex_unlock((L)))
|
|
240 |
#endif
|
|
241 |
||
242 |
/*
|
|
243 |
statistics_xxx functions are for non critical statistic,
|
|
244 |
maintained in global variables.
|
|
245 |
- race conditions can occur, making the result slightly inaccurate.
|
|
246 |
- the lock given is not honored.
|
|
247 |
*/
|
|
248 |
#define statistic_decrement(V,L) (V)--
|
|
249 |
#define statistic_increment(V,L) (V)++
|
|
250 |
#define statistic_add(V,C,L) (V)+=(C)
|
|
251 |
#define statistic_sub(V,C,L) (V)-=(C)
|
|
252 |
||
253 |
/*
|
|
254 |
No locking needed, the counter is owned by the thread
|
|
255 |
*/
|
|
256 |
#define status_var_increment(V) (V)++
|
|
257 |
#define status_var_decrement(V) (V)--
|
|
258 |
#define status_var_add(V,C) (V)+=(C)
|
|
259 |
#define status_var_sub(V,C) (V)-=(C)
|
|
260 |
||
261 |
#ifdef __cplusplus
|
|
262 |
}
|
|
263 |
#endif
|
|
264 |
#endif /* _my_ptread_h */ |