diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-13 03:14:41 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-13 03:14:41 (GMT) |
commit | 441adb8c5782de6fcf71ee3396d114c48cd1cb5b (patch) | |
tree | bdfac5137aa3cb90da5df29bd6bfd8345acd3adb /Python/thread_pthread.h | |
parent | 775632ba107fb37dfe2d38a39e129f1daad070cf (diff) | |
download | cpython-441adb8c5782de6fcf71ee3396d114c48cd1cb5b.zip cpython-441adb8c5782de6fcf71ee3396d114c48cd1cb5b.tar.gz cpython-441adb8c5782de6fcf71ee3396d114c48cd1cb5b.tar.bz2 |
Backout changeset 46393019b650
test_capi is failing and the fix is not trivial, I prefer to revert
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r-- | Python/thread_pthread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index d9f7c76..20f8535 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -627,6 +627,9 @@ int PyThread_set_key_value(int key, void *value) { int fail; + void *oldValue = pthread_getspecific(key); + if (oldValue != NULL) + return 0; fail = pthread_setspecific(key, value); return fail ? -1 : 0; } |