summaryrefslogtreecommitdiff
path: root/Include/internal
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2017-10-06 19:41:34 +0900
committerNick Coghlan <ncoghlan@gmail.com>2017-10-06 20:41:34 +1000
commit731e18901484c75b60167a06a0ba0719a6d4827d (patch)
treefc9b8afc6eb8453729c130a146b838228ab103c6 /Include/internal
parentb8ab9d3fc816f85f4d6dbef12b7414e6dc10e4dd (diff)
downloadcpython-git-731e18901484c75b60167a06a0ba0719a6d4827d.tar.gz
bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)
See PEP 539 for details. Highlights of changes: - Add Thread Specific Storage (TSS) API - Document the Thread Local Storage (TLS) API as deprecated - Update code that used TLS API to use TSS API
Diffstat (limited to 'Include/internal')
-rw-r--r--Include/internal/pystate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pystate.h b/Include/internal/pystate.h
index 20c5946b14..210917bb32 100644
--- a/Include/internal/pystate.h
+++ b/Include/internal/pystate.h
@@ -26,7 +26,7 @@ struct _gilstate_runtime_state {
*/
/* TODO: Given interp_main, it may be possible to kill this ref */
PyInterpreterState *autoInterpreterState;
- int autoTLSkey;
+ Py_tss_t autoTSSkey;
};
/* hook for PyEval_GetFrame(), requested for Psyco */