[Python-checkins] CVS: python/dist/src/Python thread_cthread.h,2.13,2.14

Guido van Rossum python-dev@python.org
Mon, 13 Nov 2000 11:45:49 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4274

Modified Files:
	thread_cthread.h 
Log Message:
Fix syntax error.  Submitted by Bill Bumgarner.  Apparently this is
still in use, for Apple Mac OSX.


Index: thread_cthread.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_cthread.h,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -r2.13 -r2.14
*** thread_cthread.h	2000/09/01 23:29:28	2.13
--- thread_cthread.h	2000/11/13 19:45:45	2.14
***************
*** 16,20 ****
   */
  int
! PyThread_start_new_thread(func, void (*func)(void *), void *arg)
  {
  	int success = 0;	/* init not needed when SOLARIS_THREADS and */
--- 16,20 ----
   */
  int
! PyThread_start_new_thread(void (*func)(void *), void *arg)
  {
  	int success = 0;	/* init not needed when SOLARIS_THREADS and */