[Python-checkins] CVS: python/dist/src/Python thread_pth.h,2.6,2.7

Fred L. Drake python-dev@python.org
Thu, 12 Oct 2000 13:58:35 -0700


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

Modified Files:
	thread_pth.h 
Log Message:

Andy Dustman <adustman@users.sourceforge.net>:
Eliminate unused variables to appease compiler.


Index: thread_pth.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/thread_pth.h,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -r2.6 -r2.7
*** thread_pth.h	2000/09/01 23:29:28	2.6
--- thread_pth.h	2000/10/12 20:58:32	2.7
***************
*** 48,52 ****
  {
  	pth_t th;
- 	int success;
  	dprintf(("PyThread_start_new_thread called\n"));
  	if (!initialized)
--- 48,51 ----
***************
*** 146,150 ****
  {
  	pth_lock *thelock = (pth_lock *)lock;
- 	int status, error = 0;
  
  	dprintf(("PyThread_free_lock(%p) called\n", lock));
--- 145,148 ----
***************
*** 247,251 ****
  void PyThread_free_sema(PyThread_type_sema sema)
  {
- 	int status, error = 0;
  	struct semaphore *thesema = (struct semaphore *) sema;
  
--- 245,248 ----