ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/xthread.h
Revision: 1.2
Committed: Mon May 12 12:36:21 2008 UTC (16 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.1: +8 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef XTHREAD_H_
2 #define XTHREAD_H_
3
4 /* whether word reads are potentially non-atomic.
5 * this is conservatice, likely most arches this runs
6 * on have atomic word read/writes.
7 */
8 #ifndef WORDACCESS_UNSAFE
9 # if __i386 || __x86_64
10 # define WORDACCESS_UNSAFE 0
11 # else
12 # define WORDACCESS_UNSAFE 1
13 # endif
14 #endif
15
16 /////////////////////////////////////////////////////////////////////////////
17
18 #ifdef _WIN32
19 typedef int ssize_t;
20
21 #define NTDDI_VERSION NTDDI_WIN2K // needed to get win2000 api calls
22 #define _WIN32_WINNT 0x400
23 #include <stdio.h>//D
24 #include <fcntl.h>
25 #include <io.h>
26 #include <time.h>
27 #include <winsock2.h>
28 #include <process.h>
29 #include <windows.h>
30 #include <pthread.h>
31 #define sigset_t int
32 #define sigfillset(a)
33 #define pthread_sigmask(a,b,c)
34 #define sigaddset(a,b)
35 #define sigemptyset(s)
36 #define sigfillset(s)
37
38 typedef pthread_mutex_t mutex_t;
39 #define X_MUTEX_INIT PTHREAD_MUTEX_INITIALIZER
40 #define X_MUTEX_CHECK(mutex)
41 #define X_LOCK(mutex) pthread_mutex_lock (&(mutex))
42 #define X_UNLOCK(mutex) pthread_mutex_unlock (&(mutex))
43
44 typedef pthread_cond_t cond_t;
45 #define X_COND_INIT PTHREAD_COND_INITIALIZER
46 #define X_COND_CHECK(cond)
47 #define X_COND_SIGNAL(cond) pthread_cond_signal (&(cond))
48 #define X_COND_WAIT(cond,mutex) pthread_cond_wait (&(cond), &(mutex))
49 #define X_COND_TIMEDWAIT(cond,mutex,to) pthread_cond_timedwait (&(cond), &(mutex), &(to))
50
51 typedef pthread_t thread_t;
52 #define X_THREAD_PROC(name) void *name (void *thr_arg)
53 #define X_THREAD_ATFORK(a,b,c)
54
55 static int
56 thread_create (thread_t *tid, void *(*proc)(void *), void *arg)
57 {
58 int res;
59 pthread_attr_t attr;
60
61 pthread_attr_init (&attr);
62 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
63
64 res = pthread_create (tid, &attr, proc, arg) == 0;
65
66 pthread_attr_destroy (&attr);
67
68 return res;
69 }
70
71 #define respipe_read(a,b,c) PerlSock_recv ((a), (b), (c), 0)
72 #define respipe_write(a,b,c) send ((a), (b), (c), 0)
73 #define respipe_close(a) PerlSock_closesocket ((a))
74
75 #else
76 /////////////////////////////////////////////////////////////////////////////
77
78 #if __linux && !defined(_GNU_SOURCE)
79 # define _GNU_SOURCE
80 #endif
81
82 /* just in case */
83 #define _REENTRANT 1
84
85 #if __solaris
86 # define _POSIX_PTHREAD_SEMANTICS 1
87 /* try to bribe solaris headers into providing a current pthread API
88 * despite environment being configured for an older version.
89 */
90 # define __EXTENSIONS__ 1
91 #endif
92
93 #include <unistd.h>
94 #include <fcntl.h>
95 #include <signal.h>
96 #include <limits.h>
97 #include <pthread.h>
98
99 typedef pthread_mutex_t mutex_t;
100 #if __linux && defined (PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP)
101 # define X_MUTEX_INIT PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
102 #else
103 # define X_MUTEX_INIT PTHREAD_MUTEX_INITIALIZER
104 #endif
105 #define X_LOCK(mutex) pthread_mutex_lock (&(mutex))
106 #define X_UNLOCK(mutex) pthread_mutex_unlock (&(mutex))
107
108 typedef pthread_cond_t cond_t;
109 #define X_COND_INIT PTHREAD_COND_INITIALIZER
110 #define X_COND_SIGNAL(cond) pthread_cond_signal (&(cond))
111 #define X_COND_WAIT(cond,mutex) pthread_cond_wait (&(cond), &(mutex))
112 #define X_COND_TIMEDWAIT(cond,mutex,to) pthread_cond_timedwait (&(cond), &(mutex), &(to))
113
114 typedef pthread_t thread_t;
115 #define X_THREAD_PROC(name) static void *name (void *thr_arg)
116 #define X_THREAD_ATFORK(prepare,parent,child) pthread_atfork (prepare, parent, child)
117
118 static int
119 thread_create (thread_t *tid, void *(*proc)(void *), void *arg)
120 {
121 int retval;
122 sigset_t fullsigset, oldsigset;
123 pthread_attr_t attr;
124
125 pthread_attr_init (&attr);
126 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
127 pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN < sizeof (long) * 4096
128 ? sizeof (long) * 4096 : PTHREAD_STACK_MIN);
129 #ifdef PTHREAD_SCOPE_PROCESS
130 pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS);
131 #endif
132
133 sigfillset (&fullsigset);
134
135 pthread_sigmask (SIG_SETMASK, &fullsigset, &oldsigset);
136 retval = pthread_create (tid, &attr, proc, arg) == 0;
137 pthread_sigmask (SIG_SETMASK, &oldsigset, 0);
138
139 pthread_attr_destroy (&attr);
140
141 return retval;
142 }
143
144 #define respipe_read(a,b,c) read ((a), (b), (c))
145 #define respipe_write(a,b,c) write ((a), (b), (c))
146 #define respipe_close(a) close ((a))
147
148 #endif
149
150 #endif
151