Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 6602099 | 1996-06-11 18:32:18 +0000 | [diff] [blame] | 2 | /* Posix threads interface */ |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 6602099 | 1996-06-11 18:32:18 +0000 | [diff] [blame] | 4 | #include <stdlib.h> |
Guido van Rossum | 9e46e56 | 1998-10-07 16:39:47 +0000 | [diff] [blame] | 5 | #include <string.h> |
Martin v. Löwis | a7a76d3 | 2002-10-04 07:21:24 +0000 | [diff] [blame] | 6 | #if defined(__APPLE__) || defined(HAVE_PTHREAD_DESTRUCTOR) |
Jack Jansen | 7668957 | 2002-01-15 20:36:14 +0000 | [diff] [blame] | 7 | #define destructor xxdestructor |
| 8 | #endif |
Guido van Rossum | 6602099 | 1996-06-11 18:32:18 +0000 | [diff] [blame] | 9 | #include <pthread.h> |
Martin v. Löwis | a7a76d3 | 2002-10-04 07:21:24 +0000 | [diff] [blame] | 10 | #if defined(__APPLE__) || defined(HAVE_PTHREAD_DESTRUCTOR) |
Jack Jansen | 7668957 | 2002-01-15 20:36:14 +0000 | [diff] [blame] | 11 | #undef destructor |
| 12 | #endif |
Guido van Rossum | 8023099 | 2001-10-12 21:49:17 +0000 | [diff] [blame] | 13 | #include <signal.h> |
Martin v. Löwis | 42ab61e | 2002-03-17 17:19:00 +0000 | [diff] [blame] | 14 | |
Jake Tesler | b121f63 | 2019-05-22 08:43:17 -0700 | [diff] [blame] | 15 | #if defined(__linux__) |
| 16 | # include <sys/syscall.h> /* syscall(SYS_gettid) */ |
| 17 | #elif defined(__FreeBSD__) |
| 18 | # include <pthread_np.h> /* pthread_getthreadid_np() */ |
David Carlier | 0b9956e | 2019-06-03 16:43:33 +0100 | [diff] [blame] | 19 | #elif defined(__OpenBSD__) |
| 20 | # include <unistd.h> /* getthrid() */ |
Jake Tesler | b121f63 | 2019-05-22 08:43:17 -0700 | [diff] [blame] | 21 | #endif |
| 22 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 23 | /* The POSIX spec requires that use of pthread_attr_setstacksize |
| 24 | be conditional on _POSIX_THREAD_ATTR_STACKSIZE being defined. */ |
| 25 | #ifdef _POSIX_THREAD_ATTR_STACKSIZE |
| 26 | #ifndef THREAD_STACK_SIZE |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 27 | #define THREAD_STACK_SIZE 0 /* use default stack size */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 28 | #endif |
Ned Deily | 9a7c524 | 2011-05-28 00:19:56 -0700 | [diff] [blame] | 29 | |
Ned Deily | 7ca97d5 | 2012-03-13 11:18:18 -0700 | [diff] [blame] | 30 | /* The default stack size for new threads on OSX and BSD is small enough that |
| 31 | * we'll get hard crashes instead of 'maximum recursion depth exceeded' |
| 32 | * exceptions. |
| 33 | * |
| 34 | * The default stack sizes below are the empirically determined minimal stack |
| 35 | * sizes where a simple recursive function doesn't cause a hard crash. |
| 36 | */ |
| 37 | #if defined(__APPLE__) && defined(THREAD_STACK_SIZE) && THREAD_STACK_SIZE == 0 |
| 38 | #undef THREAD_STACK_SIZE |
| 39 | #define THREAD_STACK_SIZE 0x500000 |
| 40 | #endif |
| 41 | #if defined(__FreeBSD__) && defined(THREAD_STACK_SIZE) && THREAD_STACK_SIZE == 0 |
Ned Deily | 9a7c524 | 2011-05-28 00:19:56 -0700 | [diff] [blame] | 42 | #undef THREAD_STACK_SIZE |
| 43 | #define THREAD_STACK_SIZE 0x400000 |
| 44 | #endif |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 45 | /* for safety, ensure a viable minimum stacksize */ |
Victor Stinner | 8c663fd | 2017-11-08 14:44:44 -0800 | [diff] [blame] | 46 | #define THREAD_STACK_MIN 0x8000 /* 32 KiB */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 47 | #else /* !_POSIX_THREAD_ATTR_STACKSIZE */ |
| 48 | #ifdef THREAD_STACK_SIZE |
| 49 | #error "THREAD_STACK_SIZE defined but _POSIX_THREAD_ATTR_STACKSIZE undefined" |
| 50 | #endif |
| 51 | #endif |
| 52 | |
Martin v. Löwis | 42ab61e | 2002-03-17 17:19:00 +0000 | [diff] [blame] | 53 | /* The POSIX spec says that implementations supporting the sem_* |
| 54 | family of functions must indicate this by defining |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 55 | _POSIX_SEMAPHORES. */ |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 56 | #ifdef _POSIX_SEMAPHORES |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 57 | /* On FreeBSD 4.x, _POSIX_SEMAPHORES is defined empty, so |
Martin v. Löwis | 8b8fb3d | 2005-03-28 12:34:20 +0000 | [diff] [blame] | 58 | we need to add 0 to make it work there as well. */ |
| 59 | #if (_POSIX_SEMAPHORES+0) == -1 |
Anthony Baxter | 19b2369 | 2005-03-16 04:15:07 +0000 | [diff] [blame] | 60 | #define HAVE_BROKEN_POSIX_SEMAPHORES |
| 61 | #else |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 62 | #include <semaphore.h> |
| 63 | #include <errno.h> |
| 64 | #endif |
Anthony Baxter | 19b2369 | 2005-03-16 04:15:07 +0000 | [diff] [blame] | 65 | #endif |
Guido van Rossum | 6602099 | 1996-06-11 18:32:18 +0000 | [diff] [blame] | 66 | |
Guido van Rossum | d6353e2 | 1997-05-13 17:51:13 +0000 | [diff] [blame] | 67 | |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 68 | /* Whether or not to use semaphores directly rather than emulating them with |
| 69 | * mutexes and condition variables: |
| 70 | */ |
Antoine Pitrou | 19f8edc | 2010-10-10 08:37:22 +0000 | [diff] [blame] | 71 | #if (defined(_POSIX_SEMAPHORES) && !defined(HAVE_BROKEN_POSIX_SEMAPHORES) && \ |
| 72 | defined(HAVE_SEM_TIMEDWAIT)) |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 73 | # define USE_SEMAPHORES |
| 74 | #else |
| 75 | # undef USE_SEMAPHORES |
| 76 | #endif |
| 77 | |
| 78 | |
Guido van Rossum | 8023099 | 2001-10-12 21:49:17 +0000 | [diff] [blame] | 79 | /* On platforms that don't use standard POSIX threads pthread_sigmask() |
| 80 | * isn't present. DEC threads uses sigprocmask() instead as do most |
| 81 | * other UNIX International compliant systems that don't have the full |
| 82 | * pthread implementation. |
| 83 | */ |
Jason Tishler | fac083d | 2003-07-22 15:20:49 +0000 | [diff] [blame] | 84 | #if defined(HAVE_PTHREAD_SIGMASK) && !defined(HAVE_BROKEN_PTHREAD_SIGMASK) |
Guido van Rossum | 8023099 | 2001-10-12 21:49:17 +0000 | [diff] [blame] | 85 | # define SET_THREAD_SIGMASK pthread_sigmask |
| 86 | #else |
| 87 | # define SET_THREAD_SIGMASK sigprocmask |
| 88 | #endif |
| 89 | |
| 90 | |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 91 | /* We assume all modern POSIX systems have gettimeofday() */ |
| 92 | #ifdef GETTIMEOFDAY_NO_TZ |
| 93 | #define GETTIMEOFDAY(ptv) gettimeofday(ptv) |
| 94 | #else |
| 95 | #define GETTIMEOFDAY(ptv) gettimeofday(ptv, (struct timezone *)NULL) |
| 96 | #endif |
| 97 | |
| 98 | #define MICROSECONDS_TO_TIMESPEC(microseconds, ts) \ |
| 99 | do { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 100 | struct timeval tv; \ |
| 101 | GETTIMEOFDAY(&tv); \ |
| 102 | tv.tv_usec += microseconds % 1000000; \ |
| 103 | tv.tv_sec += microseconds / 1000000; \ |
| 104 | tv.tv_sec += tv.tv_usec / 1000000; \ |
| 105 | tv.tv_usec %= 1000000; \ |
| 106 | ts.tv_sec = tv.tv_sec; \ |
| 107 | ts.tv_nsec = tv.tv_usec * 1000; \ |
Antoine Pitrou | 7c3e577 | 2010-04-14 15:44:10 +0000 | [diff] [blame] | 108 | } while(0) |
| 109 | |
| 110 | |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 111 | /* |
| 112 | * pthread_cond support |
| 113 | */ |
| 114 | |
| 115 | #if defined(HAVE_PTHREAD_CONDATTR_SETCLOCK) && defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC) |
| 116 | // monotonic is supported statically. It doesn't mean it works on runtime. |
| 117 | #define CONDATTR_MONOTONIC |
| 118 | #endif |
| 119 | |
| 120 | // NULL when pthread_condattr_setclock(CLOCK_MONOTONIC) is not supported. |
| 121 | static pthread_condattr_t *condattr_monotonic = NULL; |
| 122 | |
| 123 | static void |
| 124 | init_condattr() |
| 125 | { |
| 126 | #ifdef CONDATTR_MONOTONIC |
| 127 | static pthread_condattr_t ca; |
| 128 | pthread_condattr_init(&ca); |
| 129 | if (pthread_condattr_setclock(&ca, CLOCK_MONOTONIC) == 0) { |
| 130 | condattr_monotonic = &ca; // Use monotonic clock |
| 131 | } |
| 132 | #endif |
| 133 | } |
| 134 | |
| 135 | int |
| 136 | _PyThread_cond_init(PyCOND_T *cond) |
| 137 | { |
| 138 | return pthread_cond_init(cond, condattr_monotonic); |
| 139 | } |
| 140 | |
| 141 | void |
| 142 | _PyThread_cond_after(long long us, struct timespec *abs) |
| 143 | { |
| 144 | #ifdef CONDATTR_MONOTONIC |
| 145 | if (condattr_monotonic) { |
| 146 | clock_gettime(CLOCK_MONOTONIC, abs); |
| 147 | abs->tv_sec += us / 1000000; |
| 148 | abs->tv_nsec += (us % 1000000) * 1000; |
| 149 | abs->tv_sec += abs->tv_nsec / 1000000000; |
| 150 | abs->tv_nsec %= 1000000000; |
| 151 | return; |
| 152 | } |
| 153 | #endif |
| 154 | |
| 155 | struct timespec ts; |
| 156 | MICROSECONDS_TO_TIMESPEC(us, ts); |
| 157 | *abs = ts; |
| 158 | } |
| 159 | |
| 160 | |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 161 | /* A pthread mutex isn't sufficient to model the Python lock type |
| 162 | * because, according to Draft 5 of the docs (P1003.4a/D5), both of the |
| 163 | * following are undefined: |
| 164 | * -> a thread tries to lock a mutex it already has locked |
| 165 | * -> a thread tries to unlock a mutex locked by a different thread |
| 166 | * pthread mutexes are designed for serializing threads over short pieces |
| 167 | * of code anyway, so wouldn't be an appropriate implementation of |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 168 | * Python's locks regardless. |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 169 | * |
| 170 | * The pthread_lock struct implements a Python lock as a "locked?" bit |
| 171 | * and a <condition, mutex> pair. In general, if the bit can be acquired |
| 172 | * instantly, it is, else the pair is used to block the thread until the |
| 173 | * bit is cleared. 9 May 1994 tim@ksr.com |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 174 | */ |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 175 | |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 176 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 177 | char locked; /* 0=unlocked, 1=locked */ |
| 178 | /* a <cond, mutex> pair to handle an acquire of a locked lock */ |
| 179 | pthread_cond_t lock_released; |
| 180 | pthread_mutex_t mut; |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 181 | } pthread_lock; |
| 182 | |
Guido van Rossum | 9e46e56 | 1998-10-07 16:39:47 +0000 | [diff] [blame] | 183 | #define CHECK_STATUS(name) if (status != 0) { perror(name); error = 1; } |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 184 | #define CHECK_STATUS_PTHREAD(name) if (status != 0) { fprintf(stderr, \ |
| 185 | "%s: %s\n", name, strerror(status)); error = 1; } |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 186 | |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 187 | /* |
| 188 | * Initialization. |
| 189 | */ |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 190 | static void |
| 191 | PyThread__init_thread(void) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 192 | { |
Guido van Rossum | d21744a | 1998-09-10 03:04:40 +0000 | [diff] [blame] | 193 | #if defined(_AIX) && defined(__GNUC__) |
Antoine Pitrou | 9a00e0a | 2013-06-18 22:17:48 +0200 | [diff] [blame] | 194 | extern void pthread_init(void); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 195 | pthread_init(); |
Guido van Rossum | d21744a | 1998-09-10 03:04:40 +0000 | [diff] [blame] | 196 | #endif |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 197 | init_condattr(); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /* |
| 201 | * Thread support. |
| 202 | */ |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 203 | |
Siddhesh Poyarekar | 9eea6ea | 2018-11-30 20:44:25 +0530 | [diff] [blame] | 204 | /* bpo-33015: pythread_callback struct and pythread_wrapper() cast |
| 205 | "void func(void *)" to "void* func(void *)": always return NULL. |
| 206 | |
| 207 | PyThread_start_new_thread() uses "void func(void *)" type, whereas |
| 208 | pthread_create() requires a void* return value. */ |
| 209 | typedef struct { |
| 210 | void (*func) (void *); |
| 211 | void *arg; |
| 212 | } pythread_callback; |
| 213 | |
| 214 | static void * |
| 215 | pythread_wrapper(void *arg) |
| 216 | { |
| 217 | /* copy func and func_arg and free the temporary structure */ |
| 218 | pythread_callback *callback = arg; |
| 219 | void (*func)(void *) = callback->func; |
| 220 | void *func_arg = callback->arg; |
| 221 | PyMem_RawFree(arg); |
| 222 | |
| 223 | func(func_arg); |
| 224 | return NULL; |
| 225 | } |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 226 | |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 227 | unsigned long |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 228 | PyThread_start_new_thread(void (*func)(void *), void *arg) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 229 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 230 | pthread_t th; |
| 231 | int status; |
Guido van Rossum | d0b69ec | 2001-09-10 14:10:54 +0000 | [diff] [blame] | 232 | #if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 233 | pthread_attr_t attrs; |
Jack Jansen | c51395d | 2001-08-29 15:24:53 +0000 | [diff] [blame] | 234 | #endif |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 235 | #if defined(THREAD_STACK_SIZE) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 236 | size_t tss; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 237 | #endif |
| 238 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 239 | dprintf(("PyThread_start_new_thread called\n")); |
| 240 | if (!initialized) |
| 241 | PyThread_init_thread(); |
Guido van Rossum | d6353e2 | 1997-05-13 17:51:13 +0000 | [diff] [blame] | 242 | |
Guido van Rossum | d0b69ec | 2001-09-10 14:10:54 +0000 | [diff] [blame] | 243 | #if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 244 | if (pthread_attr_init(&attrs) != 0) |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 245 | return PYTHREAD_INVALID_THREAD_ID; |
Guido van Rossum | d0b69ec | 2001-09-10 14:10:54 +0000 | [diff] [blame] | 246 | #endif |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 247 | #if defined(THREAD_STACK_SIZE) |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 248 | PyThreadState *tstate = _PyThreadState_GET(); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 249 | size_t stacksize = tstate ? tstate->interp->pythread_stacksize : 0; |
| 250 | tss = (stacksize != 0) ? stacksize : THREAD_STACK_SIZE; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 251 | if (tss != 0) { |
| 252 | if (pthread_attr_setstacksize(&attrs, tss) != 0) { |
| 253 | pthread_attr_destroy(&attrs); |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 254 | return PYTHREAD_INVALID_THREAD_ID; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 255 | } |
| 256 | } |
Jack Jansen | c51395d | 2001-08-29 15:24:53 +0000 | [diff] [blame] | 257 | #endif |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 258 | #if defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 259 | pthread_attr_setscope(&attrs, PTHREAD_SCOPE_SYSTEM); |
Guido van Rossum | d0b69ec | 2001-09-10 14:10:54 +0000 | [diff] [blame] | 260 | #endif |
Guido van Rossum | 8023099 | 2001-10-12 21:49:17 +0000 | [diff] [blame] | 261 | |
Siddhesh Poyarekar | 9eea6ea | 2018-11-30 20:44:25 +0530 | [diff] [blame] | 262 | pythread_callback *callback = PyMem_RawMalloc(sizeof(pythread_callback)); |
| 263 | |
| 264 | if (callback == NULL) { |
| 265 | return PYTHREAD_INVALID_THREAD_ID; |
| 266 | } |
| 267 | |
| 268 | callback->func = func; |
| 269 | callback->arg = arg; |
| 270 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 271 | status = pthread_create(&th, |
Guido van Rossum | d0b69ec | 2001-09-10 14:10:54 +0000 | [diff] [blame] | 272 | #if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 273 | &attrs, |
Jack Jansen | c51395d | 2001-08-29 15:24:53 +0000 | [diff] [blame] | 274 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 275 | (pthread_attr_t*)NULL, |
Jack Jansen | c51395d | 2001-08-29 15:24:53 +0000 | [diff] [blame] | 276 | #endif |
Siddhesh Poyarekar | 9eea6ea | 2018-11-30 20:44:25 +0530 | [diff] [blame] | 277 | pythread_wrapper, callback); |
Guido van Rossum | 8023099 | 2001-10-12 21:49:17 +0000 | [diff] [blame] | 278 | |
Fred Drake | 03459a5 | 2001-11-09 16:00:41 +0000 | [diff] [blame] | 279 | #if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 280 | pthread_attr_destroy(&attrs); |
Jack Jansen | c51395d | 2001-08-29 15:24:53 +0000 | [diff] [blame] | 281 | #endif |
Siddhesh Poyarekar | 9eea6ea | 2018-11-30 20:44:25 +0530 | [diff] [blame] | 282 | |
| 283 | if (status != 0) { |
| 284 | PyMem_RawFree(callback); |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 285 | return PYTHREAD_INVALID_THREAD_ID; |
Siddhesh Poyarekar | 9eea6ea | 2018-11-30 20:44:25 +0530 | [diff] [blame] | 286 | } |
Martin v. Löwis | 910ae62 | 2003-04-19 07:44:52 +0000 | [diff] [blame] | 287 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 288 | pthread_detach(th); |
Martin v. Löwis | 910ae62 | 2003-04-19 07:44:52 +0000 | [diff] [blame] | 289 | |
Guido van Rossum | 3c28863 | 2001-10-16 21:13:49 +0000 | [diff] [blame] | 290 | #if SIZEOF_PTHREAD_T <= SIZEOF_LONG |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 291 | return (unsigned long) th; |
Guido van Rossum | 3c28863 | 2001-10-16 21:13:49 +0000 | [diff] [blame] | 292 | #else |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 293 | return (unsigned long) *(unsigned long *) &th; |
Guido van Rossum | 3c28863 | 2001-10-16 21:13:49 +0000 | [diff] [blame] | 294 | #endif |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Trent Mick | 635f6fb | 2000-08-23 21:33:05 +0000 | [diff] [blame] | 297 | /* XXX This implementation is considered (to quote Tim Peters) "inherently |
| 298 | hosed" because: |
Skip Montanaro | 6babcc2 | 2004-03-03 08:42:23 +0000 | [diff] [blame] | 299 | - It does not guarantee the promise that a non-zero integer is returned. |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 300 | - The cast to unsigned long is inherently unsafe. |
Jesus Cea | 736e7fc | 2011-03-14 17:36:54 +0100 | [diff] [blame] | 301 | - It is not clear that the 'volatile' (for AIX?) are any longer necessary. |
Trent Mick | 635f6fb | 2000-08-23 21:33:05 +0000 | [diff] [blame] | 302 | */ |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 303 | unsigned long |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 304 | PyThread_get_thread_ident(void) |
Guido van Rossum | e944da8 | 1994-05-23 12:43:41 +0000 | [diff] [blame] | 305 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 306 | volatile pthread_t threadid; |
| 307 | if (!initialized) |
| 308 | PyThread_init_thread(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 309 | threadid = pthread_self(); |
Serhiy Storchaka | aefa7eb | 2017-03-23 15:48:39 +0200 | [diff] [blame] | 310 | return (unsigned long) threadid; |
Guido van Rossum | e944da8 | 1994-05-23 12:43:41 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Jake Tesler | b121f63 | 2019-05-22 08:43:17 -0700 | [diff] [blame] | 313 | #ifdef PY_HAVE_THREAD_NATIVE_ID |
| 314 | unsigned long |
| 315 | PyThread_get_thread_native_id(void) |
| 316 | { |
| 317 | if (!initialized) |
| 318 | PyThread_init_thread(); |
| 319 | #ifdef __APPLE__ |
| 320 | uint64_t native_id; |
| 321 | (void) pthread_threadid_np(NULL, &native_id); |
| 322 | #elif defined(__linux__) |
| 323 | pid_t native_id; |
| 324 | native_id = syscall(SYS_gettid); |
| 325 | #elif defined(__FreeBSD__) |
| 326 | int native_id; |
| 327 | native_id = pthread_getthreadid_np(); |
David Carlier | 0b9956e | 2019-06-03 16:43:33 +0100 | [diff] [blame] | 328 | #elif defined(__OpenBSD__) |
| 329 | pid_t native_id; |
| 330 | native_id = getthrid(); |
Jake Tesler | b121f63 | 2019-05-22 08:43:17 -0700 | [diff] [blame] | 331 | #endif |
| 332 | return (unsigned long) native_id; |
| 333 | } |
| 334 | #endif |
| 335 | |
Victor Stinner | c664b34 | 2019-05-04 11:48:05 -0400 | [diff] [blame] | 336 | void _Py_NO_RETURN |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 337 | PyThread_exit_thread(void) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 338 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 339 | dprintf(("PyThread_exit_thread called\n")); |
Antoine Pitrou | 0d5e52d | 2011-05-04 20:02:30 +0200 | [diff] [blame] | 340 | if (!initialized) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 341 | exit(0); |
Antoine Pitrou | 0d5e52d | 2011-05-04 20:02:30 +0200 | [diff] [blame] | 342 | pthread_exit(0); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 345 | #ifdef USE_SEMAPHORES |
| 346 | |
| 347 | /* |
| 348 | * Lock support. |
| 349 | */ |
| 350 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 351 | PyThread_type_lock |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 352 | PyThread_allocate_lock(void) |
| 353 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 354 | sem_t *lock; |
| 355 | int status, error = 0; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 356 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 357 | dprintf(("PyThread_allocate_lock called\n")); |
| 358 | if (!initialized) |
| 359 | PyThread_init_thread(); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 360 | |
Victor Stinner | 80aa565 | 2013-07-07 17:17:59 +0200 | [diff] [blame] | 361 | lock = (sem_t *)PyMem_RawMalloc(sizeof(sem_t)); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 362 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 363 | if (lock) { |
| 364 | status = sem_init(lock,0,1); |
| 365 | CHECK_STATUS("sem_init"); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 366 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 367 | if (error) { |
Victor Stinner | 80aa565 | 2013-07-07 17:17:59 +0200 | [diff] [blame] | 368 | PyMem_RawFree((void *)lock); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 369 | lock = NULL; |
| 370 | } |
| 371 | } |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 372 | |
Zackery Spytz | 1a2252e | 2019-05-06 10:56:51 -0600 | [diff] [blame] | 373 | dprintf(("PyThread_allocate_lock() -> %p\n", (void *)lock)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 374 | return (PyThread_type_lock)lock; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 377 | void |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 378 | PyThread_free_lock(PyThread_type_lock lock) |
| 379 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 380 | sem_t *thelock = (sem_t *)lock; |
| 381 | int status, error = 0; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 382 | |
Christian Heimes | 56379c0 | 2012-12-02 08:37:00 +0100 | [diff] [blame] | 383 | (void) error; /* silence unused-but-set-variable warning */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 384 | dprintf(("PyThread_free_lock(%p) called\n", lock)); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 385 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 386 | if (!thelock) |
| 387 | return; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 388 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 389 | status = sem_destroy(thelock); |
| 390 | CHECK_STATUS("sem_destroy"); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 391 | |
Victor Stinner | 80aa565 | 2013-07-07 17:17:59 +0200 | [diff] [blame] | 392 | PyMem_RawFree((void *)thelock); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | /* |
| 396 | * As of February 2002, Cygwin thread implementations mistakenly report error |
| 397 | * codes in the return value of the sem_ calls (like the pthread_ functions). |
| 398 | * Correct implementations return -1 and put the code in errno. This supports |
| 399 | * either. |
| 400 | */ |
| 401 | static int |
| 402 | fix_status(int status) |
| 403 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 404 | return (status == -1) ? errno : status; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 405 | } |
| 406 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 407 | PyLockStatus |
| 408 | PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, |
| 409 | int intr_flag) |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 410 | { |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 411 | PyLockStatus success; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 412 | sem_t *thelock = (sem_t *)lock; |
| 413 | int status, error = 0; |
| 414 | struct timespec ts; |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 415 | _PyTime_t deadline = 0; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 416 | |
Christian Heimes | 56379c0 | 2012-12-02 08:37:00 +0100 | [diff] [blame] | 417 | (void) error; /* silence unused-but-set-variable warning */ |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 418 | dprintf(("PyThread_acquire_lock_timed(%p, %lld, %d) called\n", |
| 419 | lock, microseconds, intr_flag)); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 420 | |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 421 | if (microseconds > PY_TIMEOUT_MAX) { |
| 422 | Py_FatalError("Timeout larger than PY_TIMEOUT_MAX"); |
| 423 | } |
| 424 | |
| 425 | if (microseconds > 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 426 | MICROSECONDS_TO_TIMESPEC(microseconds, ts); |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 427 | |
| 428 | if (!intr_flag) { |
| 429 | /* cannot overflow thanks to (microseconds > PY_TIMEOUT_MAX) |
| 430 | check done above */ |
| 431 | _PyTime_t timeout = _PyTime_FromNanoseconds(microseconds * 1000); |
| 432 | deadline = _PyTime_GetMonotonicClock() + timeout; |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | while (1) { |
| 437 | if (microseconds > 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 438 | status = fix_status(sem_timedwait(thelock, &ts)); |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 439 | } |
| 440 | else if (microseconds == 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 441 | status = fix_status(sem_trywait(thelock)); |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 442 | } |
| 443 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 444 | status = fix_status(sem_wait(thelock)); |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 445 | } |
| 446 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 447 | /* Retry if interrupted by a signal, unless the caller wants to be |
| 448 | notified. */ |
Victor Stinner | 850a18e | 2017-10-24 16:53:32 -0700 | [diff] [blame] | 449 | if (intr_flag || status != EINTR) { |
| 450 | break; |
| 451 | } |
| 452 | |
| 453 | if (microseconds > 0) { |
| 454 | /* wait interrupted by a signal (EINTR): recompute the timeout */ |
| 455 | _PyTime_t dt = deadline - _PyTime_GetMonotonicClock(); |
| 456 | if (dt < 0) { |
| 457 | status = ETIMEDOUT; |
| 458 | break; |
| 459 | } |
| 460 | else if (dt > 0) { |
| 461 | _PyTime_t realtime_deadline = _PyTime_GetSystemClock() + dt; |
| 462 | if (_PyTime_AsTimespec(realtime_deadline, &ts) < 0) { |
| 463 | /* Cannot occur thanks to (microseconds > PY_TIMEOUT_MAX) |
| 464 | check done above */ |
| 465 | Py_UNREACHABLE(); |
| 466 | } |
| 467 | /* no need to update microseconds value, the code only care |
| 468 | if (microseconds > 0 or (microseconds == 0). */ |
| 469 | } |
| 470 | else { |
| 471 | microseconds = 0; |
| 472 | } |
| 473 | } |
| 474 | } |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 475 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 476 | /* Don't check the status if we're stopping because of an interrupt. */ |
| 477 | if (!(intr_flag && status == EINTR)) { |
| 478 | if (microseconds > 0) { |
| 479 | if (status != ETIMEDOUT) |
| 480 | CHECK_STATUS("sem_timedwait"); |
| 481 | } |
| 482 | else if (microseconds == 0) { |
| 483 | if (status != EAGAIN) |
| 484 | CHECK_STATUS("sem_trywait"); |
| 485 | } |
| 486 | else { |
| 487 | CHECK_STATUS("sem_wait"); |
| 488 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 489 | } |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 490 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 491 | if (status == 0) { |
| 492 | success = PY_LOCK_ACQUIRED; |
| 493 | } else if (intr_flag && status == EINTR) { |
| 494 | success = PY_LOCK_INTR; |
| 495 | } else { |
| 496 | success = PY_LOCK_FAILURE; |
| 497 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 498 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 499 | dprintf(("PyThread_acquire_lock_timed(%p, %lld, %d) -> %d\n", |
| 500 | lock, microseconds, intr_flag, success)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 501 | return success; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 504 | void |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 505 | PyThread_release_lock(PyThread_type_lock lock) |
| 506 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 507 | sem_t *thelock = (sem_t *)lock; |
| 508 | int status, error = 0; |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 509 | |
Christian Heimes | 56379c0 | 2012-12-02 08:37:00 +0100 | [diff] [blame] | 510 | (void) error; /* silence unused-but-set-variable warning */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 511 | dprintf(("PyThread_release_lock(%p) called\n", lock)); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 512 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 513 | status = sem_post(thelock); |
| 514 | CHECK_STATUS("sem_post"); |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | #else /* USE_SEMAPHORES */ |
| 518 | |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 519 | /* |
| 520 | * Lock support. |
| 521 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 522 | PyThread_type_lock |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 523 | PyThread_allocate_lock(void) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 524 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 525 | pthread_lock *lock; |
| 526 | int status, error = 0; |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 527 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 528 | dprintf(("PyThread_allocate_lock called\n")); |
| 529 | if (!initialized) |
| 530 | PyThread_init_thread(); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 531 | |
Victor Stinner | 80aa565 | 2013-07-07 17:17:59 +0200 | [diff] [blame] | 532 | lock = (pthread_lock *) PyMem_RawMalloc(sizeof(pthread_lock)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 533 | if (lock) { |
| 534 | memset((void *)lock, '\0', sizeof(pthread_lock)); |
| 535 | lock->locked = 0; |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 536 | |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 537 | status = pthread_mutex_init(&lock->mut, NULL); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 538 | CHECK_STATUS_PTHREAD("pthread_mutex_init"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 539 | /* Mark the pthread mutex underlying a Python mutex as |
| 540 | pure happens-before. We can't simply mark the |
| 541 | Python-level mutex as a mutex because it can be |
| 542 | acquired and released in different threads, which |
| 543 | will cause errors. */ |
| 544 | _Py_ANNOTATE_PURE_HAPPENS_BEFORE_MUTEX(&lock->mut); |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 545 | |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 546 | status = _PyThread_cond_init(&lock->lock_released); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 547 | CHECK_STATUS_PTHREAD("pthread_cond_init"); |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 548 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 549 | if (error) { |
Victor Stinner | 80aa565 | 2013-07-07 17:17:59 +0200 | [diff] [blame] | 550 | PyMem_RawFree((void *)lock); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 551 | lock = 0; |
| 552 | } |
| 553 | } |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 554 | |
Zackery Spytz | 1a2252e | 2019-05-06 10:56:51 -0600 | [diff] [blame] | 555 | dprintf(("PyThread_allocate_lock() -> %p\n", (void *)lock)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 556 | return (PyThread_type_lock) lock; |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 560 | PyThread_free_lock(PyThread_type_lock lock) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 561 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 562 | pthread_lock *thelock = (pthread_lock *)lock; |
| 563 | int status, error = 0; |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 564 | |
Antoine Pitrou | 9a00e0a | 2013-06-18 22:17:48 +0200 | [diff] [blame] | 565 | (void) error; /* silence unused-but-set-variable warning */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 566 | dprintf(("PyThread_free_lock(%p) called\n", lock)); |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 567 | |
Kristján Valur Jónsson | 187aa54 | 2012-06-05 22:17:42 +0000 | [diff] [blame] | 568 | /* some pthread-like implementations tie the mutex to the cond |
| 569 | * and must have the cond destroyed first. |
| 570 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 571 | status = pthread_cond_destroy( &thelock->lock_released ); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 572 | CHECK_STATUS_PTHREAD("pthread_cond_destroy"); |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 573 | |
Kristján Valur Jónsson | 187aa54 | 2012-06-05 22:17:42 +0000 | [diff] [blame] | 574 | status = pthread_mutex_destroy( &thelock->mut ); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 575 | CHECK_STATUS_PTHREAD("pthread_mutex_destroy"); |
Kristján Valur Jónsson | 187aa54 | 2012-06-05 22:17:42 +0000 | [diff] [blame] | 576 | |
Victor Stinner | 80aa565 | 2013-07-07 17:17:59 +0200 | [diff] [blame] | 577 | PyMem_RawFree((void *)thelock); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 578 | } |
| 579 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 580 | PyLockStatus |
| 581 | PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, |
| 582 | int intr_flag) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 583 | { |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 584 | PyLockStatus success = PY_LOCK_FAILURE; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 585 | pthread_lock *thelock = (pthread_lock *)lock; |
| 586 | int status, error = 0; |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 587 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 588 | dprintf(("PyThread_acquire_lock_timed(%p, %lld, %d) called\n", |
| 589 | lock, microseconds, intr_flag)); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 590 | |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 591 | if (microseconds == 0) { |
| 592 | status = pthread_mutex_trylock( &thelock->mut ); |
| 593 | if (status != EBUSY) |
| 594 | CHECK_STATUS_PTHREAD("pthread_mutex_trylock[1]"); |
| 595 | } |
| 596 | else { |
| 597 | status = pthread_mutex_lock( &thelock->mut ); |
| 598 | CHECK_STATUS_PTHREAD("pthread_mutex_lock[1]"); |
| 599 | } |
| 600 | if (status == 0) { |
| 601 | if (thelock->locked == 0) { |
| 602 | success = PY_LOCK_ACQUIRED; |
| 603 | } |
| 604 | else if (microseconds != 0) { |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 605 | struct timespec abs; |
| 606 | if (microseconds > 0) { |
| 607 | _PyThread_cond_after(microseconds, &abs); |
| 608 | } |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 609 | /* continue trying until we get the lock */ |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 610 | |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 611 | /* mut must be locked by me -- part of the condition |
| 612 | * protocol */ |
| 613 | while (success == PY_LOCK_FAILURE) { |
| 614 | if (microseconds > 0) { |
| 615 | status = pthread_cond_timedwait( |
| 616 | &thelock->lock_released, |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 617 | &thelock->mut, &abs); |
| 618 | if (status == 1) { |
| 619 | break; |
| 620 | } |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 621 | if (status == ETIMEDOUT) |
| 622 | break; |
Inada Naoki | 001fee1 | 2019-02-20 10:00:09 +0900 | [diff] [blame] | 623 | CHECK_STATUS_PTHREAD("pthread_cond_timedwait"); |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 624 | } |
| 625 | else { |
| 626 | status = pthread_cond_wait( |
| 627 | &thelock->lock_released, |
| 628 | &thelock->mut); |
| 629 | CHECK_STATUS_PTHREAD("pthread_cond_wait"); |
| 630 | } |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 631 | |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 632 | if (intr_flag && status == 0 && thelock->locked) { |
| 633 | /* We were woken up, but didn't get the lock. We probably received |
| 634 | * a signal. Return PY_LOCK_INTR to allow the caller to handle |
| 635 | * it and retry. */ |
| 636 | success = PY_LOCK_INTR; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 637 | break; |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 638 | } |
| 639 | else if (status == 0 && !thelock->locked) { |
| 640 | success = PY_LOCK_ACQUIRED; |
| 641 | } |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 642 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 643 | } |
Antoine Pitrou | f84ac42 | 2017-06-26 20:41:07 +0200 | [diff] [blame] | 644 | if (success == PY_LOCK_ACQUIRED) thelock->locked = 1; |
| 645 | status = pthread_mutex_unlock( &thelock->mut ); |
| 646 | CHECK_STATUS_PTHREAD("pthread_mutex_unlock[1]"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 647 | } |
Martin v. Löwis | 1509a15 | 2003-04-18 11:11:09 +0000 | [diff] [blame] | 648 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 649 | if (error) success = PY_LOCK_FAILURE; |
| 650 | dprintf(("PyThread_acquire_lock_timed(%p, %lld, %d) -> %d\n", |
| 651 | lock, microseconds, intr_flag, success)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 652 | return success; |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 655 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 656 | PyThread_release_lock(PyThread_type_lock lock) |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 657 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 658 | pthread_lock *thelock = (pthread_lock *)lock; |
| 659 | int status, error = 0; |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 660 | |
Antoine Pitrou | 9a00e0a | 2013-06-18 22:17:48 +0200 | [diff] [blame] | 661 | (void) error; /* silence unused-but-set-variable warning */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 662 | dprintf(("PyThread_release_lock(%p) called\n", lock)); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 663 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 664 | status = pthread_mutex_lock( &thelock->mut ); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 665 | CHECK_STATUS_PTHREAD("pthread_mutex_lock[3]"); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 666 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 667 | thelock->locked = 0; |
Guido van Rossum | b98b1b3 | 1994-05-11 08:42:04 +0000 | [diff] [blame] | 668 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 669 | /* wake up someone (anyone, if any) waiting on the lock */ |
| 670 | status = pthread_cond_signal( &thelock->lock_released ); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 671 | CHECK_STATUS_PTHREAD("pthread_cond_signal"); |
Kristján Valur Jónsson | 187aa54 | 2012-06-05 22:17:42 +0000 | [diff] [blame] | 672 | |
| 673 | status = pthread_mutex_unlock( &thelock->mut ); |
Daniel Birnstiel | d7fa6b2 | 2017-03-21 14:06:06 +0100 | [diff] [blame] | 674 | CHECK_STATUS_PTHREAD("pthread_mutex_unlock[3]"); |
Guido van Rossum | 2c8cb9f | 1994-05-09 15:12:46 +0000 | [diff] [blame] | 675 | } |
Martin v. Löwis | cc89866 | 2002-03-17 09:53:51 +0000 | [diff] [blame] | 676 | |
| 677 | #endif /* USE_SEMAPHORES */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 678 | |
Antoine Pitrou | 810023d | 2010-12-15 22:59:16 +0000 | [diff] [blame] | 679 | int |
| 680 | PyThread_acquire_lock(PyThread_type_lock lock, int waitflag) |
| 681 | { |
| 682 | return PyThread_acquire_lock_timed(lock, waitflag ? -1 : 0, /*intr_flag=*/0); |
| 683 | } |
| 684 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 685 | /* set the thread stack size. |
| 686 | * Return 0 if size is valid, -1 if size is invalid, |
| 687 | * -2 if setting stack size is not supported. |
| 688 | */ |
| 689 | static int |
| 690 | _pythread_pthread_set_stacksize(size_t size) |
| 691 | { |
| 692 | #if defined(THREAD_STACK_SIZE) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 693 | pthread_attr_t attrs; |
| 694 | size_t tss_min; |
| 695 | int rc = 0; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 696 | #endif |
| 697 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 698 | /* set to default */ |
| 699 | if (size == 0) { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 700 | _PyInterpreterState_GET_UNSAFE()->pythread_stacksize = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 701 | return 0; |
| 702 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 703 | |
| 704 | #if defined(THREAD_STACK_SIZE) |
| 705 | #if defined(PTHREAD_STACK_MIN) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 706 | tss_min = PTHREAD_STACK_MIN > THREAD_STACK_MIN ? PTHREAD_STACK_MIN |
| 707 | : THREAD_STACK_MIN; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 708 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 709 | tss_min = THREAD_STACK_MIN; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 710 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 711 | if (size >= tss_min) { |
| 712 | /* validate stack size by setting thread attribute */ |
| 713 | if (pthread_attr_init(&attrs) == 0) { |
| 714 | rc = pthread_attr_setstacksize(&attrs, size); |
| 715 | pthread_attr_destroy(&attrs); |
| 716 | if (rc == 0) { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 717 | _PyInterpreterState_GET_UNSAFE()->pythread_stacksize = size; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 718 | return 0; |
| 719 | } |
| 720 | } |
| 721 | } |
| 722 | return -1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 723 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 724 | return -2; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 725 | #endif |
| 726 | } |
| 727 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 728 | #define THREAD_SET_STACKSIZE(x) _pythread_pthread_set_stacksize(x) |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 729 | |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 730 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 731 | /* Thread Local Storage (TLS) API |
| 732 | |
| 733 | This API is DEPRECATED since Python 3.7. See PEP 539 for details. |
| 734 | */ |
| 735 | |
| 736 | /* Issue #25658: On platforms where native TLS key is defined in a way that |
| 737 | cannot be safely cast to int, PyThread_create_key returns immediately a |
| 738 | failure status and other TLS functions all are no-ops. This indicates |
| 739 | clearly that the old API is not supported on platforms where it cannot be |
| 740 | used reliably, and that no effort will be made to add such support. |
| 741 | |
| 742 | Note: PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT will be unnecessary after |
| 743 | removing this API. |
| 744 | */ |
| 745 | |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 746 | int |
| 747 | PyThread_create_key(void) |
| 748 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 749 | #ifdef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 750 | pthread_key_t key; |
| 751 | int fail = pthread_key_create(&key, NULL); |
Victor Stinner | daca3d7 | 2014-08-17 22:11:06 +0200 | [diff] [blame] | 752 | if (fail) |
| 753 | return -1; |
| 754 | if (key > INT_MAX) { |
| 755 | /* Issue #22206: handle integer overflow */ |
| 756 | pthread_key_delete(key); |
| 757 | errno = ENOMEM; |
| 758 | return -1; |
| 759 | } |
| 760 | return (int)key; |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 761 | #else |
| 762 | return -1; /* never return valid key value. */ |
| 763 | #endif |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | void |
| 767 | PyThread_delete_key(int key) |
| 768 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 769 | #ifdef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 770 | pthread_key_delete(key); |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 771 | #endif |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | void |
| 775 | PyThread_delete_key_value(int key) |
| 776 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 777 | #ifdef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 778 | pthread_setspecific(key, NULL); |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 779 | #endif |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | int |
| 783 | PyThread_set_key_value(int key, void *value) |
| 784 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 785 | #ifdef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT |
| 786 | int fail = pthread_setspecific(key, value); |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 787 | return fail ? -1 : 0; |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 788 | #else |
| 789 | return -1; |
| 790 | #endif |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | void * |
| 794 | PyThread_get_key_value(int key) |
| 795 | { |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 796 | #ifdef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 797 | return pthread_getspecific(key); |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 798 | #else |
| 799 | return NULL; |
| 800 | #endif |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 801 | } |
| 802 | |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 803 | |
Kristján Valur Jónsson | 2fea9b9 | 2010-09-20 02:11:49 +0000 | [diff] [blame] | 804 | void |
| 805 | PyThread_ReInitTLS(void) |
Masayuki Yamamoto | 731e189 | 2017-10-06 19:41:34 +0900 | [diff] [blame] | 806 | { |
| 807 | } |
| 808 | |
| 809 | |
| 810 | /* Thread Specific Storage (TSS) API |
| 811 | |
| 812 | Platform-specific components of TSS API implementation. |
| 813 | */ |
| 814 | |
| 815 | int |
| 816 | PyThread_tss_create(Py_tss_t *key) |
| 817 | { |
| 818 | assert(key != NULL); |
| 819 | /* If the key has been created, function is silently skipped. */ |
| 820 | if (key->_is_initialized) { |
| 821 | return 0; |
| 822 | } |
| 823 | |
| 824 | int fail = pthread_key_create(&(key->_key), NULL); |
| 825 | if (fail) { |
| 826 | return -1; |
| 827 | } |
| 828 | key->_is_initialized = 1; |
| 829 | return 0; |
| 830 | } |
| 831 | |
| 832 | void |
| 833 | PyThread_tss_delete(Py_tss_t *key) |
| 834 | { |
| 835 | assert(key != NULL); |
| 836 | /* If the key has not been created, function is silently skipped. */ |
| 837 | if (!key->_is_initialized) { |
| 838 | return; |
| 839 | } |
| 840 | |
| 841 | pthread_key_delete(key->_key); |
| 842 | /* pthread has not provided the defined invalid value for the key. */ |
| 843 | key->_is_initialized = 0; |
| 844 | } |
| 845 | |
| 846 | int |
| 847 | PyThread_tss_set(Py_tss_t *key, void *value) |
| 848 | { |
| 849 | assert(key != NULL); |
| 850 | int fail = pthread_setspecific(key->_key, value); |
| 851 | return fail ? -1 : 0; |
| 852 | } |
| 853 | |
| 854 | void * |
| 855 | PyThread_tss_get(Py_tss_t *key) |
| 856 | { |
| 857 | assert(key != NULL); |
| 858 | return pthread_getspecific(key->_key); |
| 859 | } |