diff options
author | Christopher Faylor <me@cgf.cx> | 2002-08-01 16:27:29 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-08-01 16:27:29 +0000 |
commit | 92655eab172c728429b5b0f3f786b443663a3f3e (patch) | |
tree | a62cb90d91fa76b7e88d49cb61fbc921ac010a0d /winsup/cygwin/cygthread.cc | |
parent | b6bd703781fdbe466e5a4d41e16743a642e7c0d3 (diff) | |
download | cygnal-92655eab172c728429b5b0f3f786b443663a3f3e.tar.gz cygnal-92655eab172c728429b5b0f3f786b443663a3f3e.tar.bz2 cygnal-92655eab172c728429b5b0f3f786b443663a3f3e.zip |
* cygthread.cc: Remove cruft.
Diffstat (limited to 'winsup/cygwin/cygthread.cc')
-rw-r--r-- | winsup/cygwin/cygthread.cc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/winsup/cygwin/cygthread.cc b/winsup/cygwin/cygthread.cc index bbfcd8218..66abb7408 100644 --- a/winsup/cygwin/cygthread.cc +++ b/winsup/cygwin/cygthread.cc @@ -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" |