summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-05-28 09:35:14 (GMT)
committerGitHub <noreply@github.com>2017-05-28 09:35:14 (GMT)
commitf7ecfac0c15f0c43ef5e6c0081eb3a059af9f074 (patch)
treedc86efb4f9610d3bf9e6338170621bdd1f244f58 /Python/ceval.c
parenteca7da0f13c78013b924fe7306f3e2e59c0af40b (diff)
downloadcpython-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.zip
cpython-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.tar.gz
cpython-f7ecfac0c15f0c43ef5e6c0081eb3a059af9f074.tar.bz2
Doc nits for bpo-16500 (#1841)
* Doc nits for bpo-16500 * Fix more references
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 302070b..b114b5b 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -232,10 +232,10 @@ PyEval_ReleaseThread(PyThreadState *tstate)
drop_gil(tstate);
}
-/* This function is called from PyOS_AfterFork to destroy all threads which are
- * not running in the child process, and clear internal locks which might be
- * held by those threads. (This could also be done using pthread_atfork
- * mechanism, at least for the pthreads implementation.) */
+/* This function is called from PyOS_AfterFork_Child to destroy all threads
+ * which are not running in the child process, and clear internal locks
+ * which might be held by those threads.
+ */
void
PyEval_ReInitThreads(void)