Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/cygthread.h')
-rw-r--r--winsup/cygwin/cygthread.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/winsup/cygwin/cygthread.h b/winsup/cygwin/cygthread.h
deleted file mode 100644
index 9d10bb266..000000000
--- a/winsup/cygwin/cygthread.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/* cygthread.h
-
- Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Red Hat, Inc.
-
-This software is a copyrighted work licensed under the terms of the
-Cygwin license. Please consult the file "CYGWIN_LICENSE" for
-details. */
-
-class cygthread
-{
- LONG inuse;
- DWORD id;
- HANDLE h;
- HANDLE ev;
- HANDLE thread_sync;
- void *stack_ptr;
- const char *__name;
- LPTHREAD_START_ROUTINE func;
- VOID *arg;
- bool is_freerange;
- static bool exiting;
- void terminate_thread ();
- public:
- static DWORD WINAPI stub (VOID *);
- static DWORD WINAPI simplestub (VOID *);
- static DWORD main_thread_id;
- static const char * name (DWORD = 0);
- cygthread (LPTHREAD_START_ROUTINE, LPVOID, const char *);
- cygthread () {};
- static void init ();
- bool detach (HANDLE = NULL);
- operator HANDLE ();
- static bool is ();
- void * operator new (size_t);
- static cygthread *freerange ();
- void exit_thread ();
- static void terminate ();
- bool SetThreadPriority (int nPriority) {return ::SetThreadPriority (h, nPriority);}
- void zap_h ()
- {
- (void) CloseHandle (h);
- h = NULL;
- }
-};
-
-#define cygself NULL