summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/cygthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/cygthread.h')
-rw-r--r--winsup/cygwin/cygthread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/cygthread.h b/winsup/cygwin/cygthread.h
index e1c2e495f..6d504f1e4 100644
--- a/winsup/cygwin/cygthread.h
+++ b/winsup/cygwin/cygthread.h
@@ -26,6 +26,7 @@ class cygthread
VOID *arg;
bool is_freerange;
static bool exiting;
+ HANDLE notify_detached;
public:
bool terminate_thread ();
static DWORD WINAPI stub (VOID *);
@@ -34,7 +35,7 @@ class cygthread
static const char * name (DWORD = 0);
void auto_release () {func = NULL;}
void release (bool);
- cygthread (LPTHREAD_START_ROUTINE, LPVOID, const char *);
+ cygthread (LPTHREAD_START_ROUTINE, LPVOID, const char *, HANDLE = NULL);
cygthread () {};
static void init ();
bool detach (HANDLE = NULL);