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;
}
ug_3607372 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
path: root/libtommath
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-09 09:49:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-05-09 09:49:23 (GMT)
commit162004aac0ba129446958a4148b2d7c308d433b2 (patch)
tree18779a3fd49602f0e6c1dbda4c9d0243e59c0d86 /libtommath
parent435fd1ab8b987021ad8a7220a1f4fc89c3a4c872 (diff)
parent57d6529dcc314ab996a90d55270e3dae7dc1f92e (diff)
downloadtcl-162004aac0ba129446958a4148b2d7c308d433b2.zip
tcl-162004aac0ba129446958a4148b2d7c308d433b2.tar.gz
tcl-162004aac0ba129446958a4148b2d7c308d433b2.tar.bz2
merge core-8-6-branch