summaryrefslogtreecommitdiffstats
path: root/Python/thread.c
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2017-05-05 08:04:13 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-05-05 08:04:13 (GMT)
commitfdaeea620f8c78da89cddba4ab010c64535800e0 (patch)
tree252054db6c2dad0712cb061d1cad56522b20cb79 /Python/thread.c
parentef9c0e732fc50aefbdd7c5a80e04e14b31684e66 (diff)
downloadcpython-fdaeea620f8c78da89cddba4ab010c64535800e0.zip
cpython-fdaeea620f8c78da89cddba4ab010c64535800e0.tar.gz
cpython-fdaeea620f8c78da89cddba4ab010c64535800e0.tar.bz2
bpo-30279: Remove unused Python/thread_foobar.h (#1473)
Python/thread_foobar.h is the template code that is threading adaptation for new platforms, also hasn't been used on actual platforms. Python/thread_*.h give concrete examples of adaptation instead of the template code.
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/thread.c b/Python/thread.c
index 3a52e1e..8fa978a 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -92,12 +92,6 @@ static size_t _pythread_stacksize = 0;
#endif
-/*
-#ifdef FOOBAR_THREADS
-#include "thread_foobar.h"
-#endif
-*/
-
/* return the current thread stack size */
size_t
PyThread_get_stacksize(void)