* cygthread.cc: Remove cruft.
This commit is contained in:
		@@ -1,3 +1,7 @@
 | 
			
		||||
2002-08-01  Christopher Faylor  <cgf@redhat.com>
 | 
			
		||||
 | 
			
		||||
	* cygthread.cc: Remove cruft.
 | 
			
		||||
 | 
			
		||||
2002-08-01  Christopher Faylor  <cgf@redhat.com>
 | 
			
		||||
 | 
			
		||||
	* Makefile.in (DLL_OFILES): Add cygthread.o.
 | 
			
		||||
 
 | 
			
		||||
@@ -6,28 +6,6 @@ This software is a copyrighted work licensed under the terms of the
 | 
			
		||||
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | 
			
		||||
details. */
 | 
			
		||||
 | 
			
		||||
class cygthread
 | 
			
		||||
{
 | 
			
		||||
  DWORD avail;
 | 
			
		||||
  DWORD id;
 | 
			
		||||
  HANDLE h;
 | 
			
		||||
  HANDLE ev;
 | 
			
		||||
  const char *__name;
 | 
			
		||||
  LPTHREAD_START_ROUTINE func;
 | 
			
		||||
  VOID *arg;
 | 
			
		||||
  static DWORD main_thread_id;
 | 
			
		||||
  static DWORD WINAPI runner (VOID *);
 | 
			
		||||
  static DWORD WINAPI stub (VOID *);
 | 
			
		||||
 public:
 | 
			
		||||
  static const char * name (DWORD = 0);
 | 
			
		||||
  cygthread (LPTHREAD_START_ROUTINE, LPVOID, const char *);
 | 
			
		||||
  cygthread () {};
 | 
			
		||||
  static void init ();
 | 
			
		||||
  void detach ();
 | 
			
		||||
  operator HANDLE ();
 | 
			
		||||
  static bool is ();
 | 
			
		||||
  void * operator new (size_t);
 | 
			
		||||
};
 | 
			
		||||
#include "winsup.h"
 | 
			
		||||
#include "exceptions.h"
 | 
			
		||||
#include "security.h"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user