[Python-checkins] CVS: python/dist/src/Python thread_nt.h,2.10,2.11

Fredrik Lundh python-dev@python.org
Thu, 29 Jun 2000 10:25:33 -0700


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

Modified Files:
	thread_nt.h 
Log Message:

- workaround to make 1.6 build under MSVC 5.0.  hopefully,
  trent (who broke it in the first place ;-) will come up
  with a cleaner solution.


Index: thread_nt.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_nt.h,v
retrieving revision 2.10
retrieving revision 2.11
diff -C2 -r2.10 -r2.11
*** thread_nt.h	2000/06/28 22:07:35	2.10
--- thread_nt.h	2000/06/29 17:25:30	2.11
***************
*** 183,187 ****
--- 183,191 ----
  int PyThread_start_new_thread(void (*func)(void *), void *arg)
  {
+ #if _MSC_VER >= 1200
  	INT_PTR rv;
+ #else
+ 	unsigned long rv;
+ #endif
  	int success = 0;