mirror of
https://github.com/python/cpython.git
synced 2025-12-10 11:00:14 +00:00
Fix syntax error. Submitted by Bill Bumgarner. Apparently this is
still in use, for Apple Mac OSX.
This commit is contained in:
parent
6042741948
commit
128bcf4520
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ PyThread__init_thread(void)
|
||||||
* Thread support.
|
* Thread support.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
PyThread_start_new_thread(func, void (*func)(void *), void *arg)
|
PyThread_start_new_thread(void (*func)(void *), void *arg)
|
||||||
{
|
{
|
||||||
int success = 0; /* init not needed when SOLARIS_THREADS and */
|
int success = 0; /* init not needed when SOLARIS_THREADS and */
|
||||||
/* C_THREADS implemented properly */
|
/* C_THREADS implemented properly */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue