Doc nits for bpo-16500 (#1841)

* Doc nits for bpo-16500

* Fix more references
This commit is contained in:
Antoine Pitrou 2017-05-28 11:35:14 +02:00 committed by GitHub
parent eca7da0f13
commit f7ecfac0c1
8 changed files with 25 additions and 13 deletions

View file

@ -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)