[Python-checkins] CVS: python/dist/src/Python pythonrun.c,2.89,2.90 thread_nt.h,2.5,2.6

Guido van Rossum guido@cnri.reston.va.us
Thu, 20 Jan 2000 17:33:29 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Python
In directory eric:/tmp/python/dist/src/Python

Modified Files:
	pythonrun.c thread_nt.h 
Log Message:
The rest of the changes by Trent Mick and Dale Nagata for warning-free
compilation on NT Alpha.  Mostly added casts etc.


Index: pythonrun.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.89
retrieving revision 2.90
diff -C2 -r2.89 -r2.90
*** pythonrun.c	1999/07/08 17:26:56	2.89
--- pythonrun.c	2000/01/20 22:32:56	2.90
***************
*** 73,76 ****
--- 73,80 ----
  static void call_ll_exitfuncs Py_PROTO((void));
  
+ #ifdef Py_TRACE_REFS
+ int _Py_AskYesNo(char *prompt);
+ #endif
+ 
  int Py_DebugFlag; /* Needed by parser.c */
  int Py_VerboseFlag; /* Needed by import.c */

Index: thread_nt.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/thread_nt.h,v
retrieving revision 2.5
retrieving revision 2.6
diff -C2 -r2.5 -r2.6
*** thread_nt.h	1998/12/21 19:32:32	2.5
--- thread_nt.h	2000/01/20 22:32:56	2.6
***************
*** 66,70 ****
  	if (rv != -1) {
  		success = 1;
! 		dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), aThreadId));
  	}
  
--- 66,70 ----
  	if (rv != -1) {
  		success = 1;
! 		dprintf(("%ld: PyThread_start_new_thread succeeded: %ld\n", PyThread_get_thread_ident(), rv));
  	}