summaryrefslogtreecommitdiffstats
path: root/Python/thread_pthread.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-13 03:14:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-13 03:14:41 (GMT)
commit441adb8c5782de6fcf71ee3396d114c48cd1cb5b (patch)
treebdfac5137aa3cb90da5df29bd6bfd8345acd3adb /Python/thread_pthread.h
parent775632ba107fb37dfe2d38a39e129f1daad070cf (diff)
downloadcpython-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.h3
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;
}