summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorCharles-Francois Natali <cf.natali@gmail.com>2013-05-08 19:09:52 (GMT)
committerCharles-Francois Natali <cf.natali@gmail.com>2013-05-08 19:09:52 (GMT)
commitf28dfdd07b57fa16f7d489e7ac99d9a15f1bef80 (patch)
treef32b7032a307596537d237bb18ade33676d11f46 /Include
parent04e70d19e7a5ab0cea7d3d231606180226e16f06 (diff)
downloadcpython-f28dfdd07b57fa16f7d489e7ac99d9a15f1bef80.zip
cpython-f28dfdd07b57fa16f7d489e7ac99d9a15f1bef80.tar.gz
cpython-f28dfdd07b57fa16f7d489e7ac99d9a15f1bef80.tar.bz2
Issue #17912: Use a doubly linked-list for thread states.
Diffstat (limited to 'Include')
-rw-r--r--Include/pystate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index a8fcc73..cd1d776 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -69,6 +69,7 @@ typedef struct _ts PyThreadState;
typedef struct _ts {
/* See Python/ceval.c for comments explaining most fields */
+ struct _ts *prev;
struct _ts *next;
PyInterpreterState *interp;