ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/xthread.h
(Generate patch)

Comparing libeio/xthread.h (file contents):
Revision 1.15 by root, Tue Apr 24 18:47:50 2012 UTC vs.
Revision 1.18 by root, Mon Sep 21 08:01:00 2015 UTC

15 15
16///////////////////////////////////////////////////////////////////////////// 16/////////////////////////////////////////////////////////////////////////////
17 17
18#ifdef _WIN32 18#ifdef _WIN32
19 19
20#define NTDDI_VERSION NTDDI_WIN2K // needed to get win2000 api calls 20//#define NTDDI_VERSION NTDDI_WIN2K // needed to get win2000 api calls, fails with mingw
21#define _WIN32_WINNT 0x400 21#define _WIN32_WINNT 0x400 // maybe working alternative for mingw
22#include <stdio.h>//D 22#include <stdio.h>//D
23#include <fcntl.h> 23#include <fcntl.h>
24#include <io.h> 24#include <io.h>
25#include <time.h> 25#include <time.h>
26#include <winsock2.h> 26#include <winsock2.h>
27#include <process.h> 27#include <process.h>
28#include <windows.h> 28#include <windows.h>
29
30/* work around some bugs in ptw32 */
31#if defined(__MINGW32__) && defined(_TIMESPEC_DEFINED)
32#define HAVE_STRUCT_TIMESPEC 1
33#endif
34
29#include <pthread.h> 35#include <pthread.h>
30#define sigset_t int 36#define sigset_t int
31#define sigfillset(a) 37#define sigfillset(a)
32#define pthread_sigmask(a,b,c) 38#define pthread_sigmask(a,b,c)
33#define sigaddset(a,b) 39#define sigaddset(a,b)
49typedef pthread_t xthread_t; 55typedef pthread_t xthread_t;
50#define X_THREAD_PROC(name) static void *name (void *thr_arg) 56#define X_THREAD_PROC(name) static void *name (void *thr_arg)
51#define X_THREAD_ATFORK(a,b,c) 57#define X_THREAD_ATFORK(a,b,c)
52 58
53static int 59static int
54thread_create (xthread_t *tid, void *(*proc)(void *), void *arg) 60xthread_create (xthread_t *tid, void *(*proc)(void *), void *arg)
55{ 61{
56 int retval; 62 int retval;
57 pthread_attr_t attr; 63 pthread_attr_t attr;
58 64
59 pthread_attr_init (&attr); 65 pthread_attr_init (&attr);
130#ifndef X_STACKSIZE 136#ifndef X_STACKSIZE
131# define X_STACKSIZE sizeof (void *) * 4096 137# define X_STACKSIZE sizeof (void *) * 4096
132#endif 138#endif
133 139
134static int 140static int
135thread_create (xthread_t *tid, void *(*proc)(void *), void *arg) 141xthread_create (xthread_t *tid, void *(*proc)(void *), void *arg)
136{ 142{
137 int retval; 143 int retval;
138 sigset_t fullsigset, oldsigset; 144 sigset_t fullsigset, oldsigset;
139 pthread_attr_t attr; 145 pthread_attr_t attr;
140 146
160#define respipe_write(a,b,c) write ((a), (b), (c)) 166#define respipe_write(a,b,c) write ((a), (b), (c))
161#define respipe_close(a) close ((a)) 167#define respipe_close(a) close ((a))
162 168
163#endif 169#endif
164 170
171#if __linux && __GNUC__ >= 4 && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 3 && 0 /* also check arch */
172/* __thread has little to no advantage over pthread_* in most configurations, so this is not used */
173# define X_TLS_DECLARE(varname) __thread void *varname
174# define X_TLS_INIT(varname)
175# define X_TLS_SET(varname,value) varname = (value)
176# define X_TLS_GET(varname) varname
177#else
178# define X_TLS_DECLARE(varname) pthread_key_t varname
179# define X_TLS_INIT(varname) do { if (pthread_key_create (&(varname), 0)) abort (); } while (0)
180# define X_TLS_SET(varname,value) pthread_setspecific (varname, (value))
181# define X_TLS_GET(varname) pthread_getspecific (varname)
165#endif 182#endif
166 183
184#endif
185

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines