diff options
Diffstat (limited to 'winsup/cygwin/cygthread.h')
-rw-r--r-- | winsup/cygwin/cygthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/cygthread.h b/winsup/cygwin/cygthread.h index 37f7c6537..b55aec90c 100644 --- a/winsup/cygwin/cygthread.h +++ b/winsup/cygwin/cygthread.h @@ -17,7 +17,7 @@ class cygthread VOID *arg; bool is_freerange; static DWORD main_thread_id; - static bool initialized; + static int initialized; static DWORD WINAPI runner (VOID *); static DWORD WINAPI free_runner (VOID *); static DWORD WINAPI stub (VOID *); @@ -33,6 +33,7 @@ class cygthread void * operator new (size_t); static void * freerange (); void exit_thread (); + static void terminate (); }; #define cygself NULL |