[Patches] [Patch #102356] Fix cthread support on Mac OS X Server

noreply@sourceforge.net noreply@sourceforge.net
Sun, 12 Nov 2000 08:27:40 -0800


Patch #102356 has been updated. 

Project: python
Category: core (C code)
Status: Open
Summary: Fix cthread support on Mac OS X Server

Follow-Ups:

Date: 2000-Nov-12 02:17
By: loewis

Comment:
That patch appears to be a duplicate of 102355, I cannot see any relationship to cthreads.
-------------------------------------------------------

Date: 2000-Nov-12 08:27
By: bbum

Comment:
Damnit.  Wrong patch.  My first experience with SourceForge is not going well.

The declaration of the PyThread_start_new_thread() function has a syntax error in the cthreads module.  Changing it from:

PyThread_start_new_thread(func, void (*func)(void *), void *arg)

to:

PyThread_start_new_thread(void (*func)(void *), void *arg)

Fixes the problem (and the thread test passes during 'make test').



-------------------------------------------------------

-------------------------------------------------------
For more info, visit:

http://sourceforge.net/patch/?func=detailpatch&patch_id=102356&group_id=5470