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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/winsup/cygwin/cygthread.h b/winsup/cygwin/cygthread.h
index cf1fd4102..e9dba0d5c 100644
--- a/winsup/cygwin/cygthread.h
+++ b/winsup/cygwin/cygthread.h
@@ -43,7 +43,8 @@ class cygthread
void auto_release () {func = NULL;}
void release (bool);
cygthread (LPTHREAD_START_ROUTINE start, unsigned n, LPVOID param, const char *name, HANDLE notify = NULL)
- : __name (name), func (start), arglen (n), arg (param), notify_detached (notify), standalone (false)
+ : __name (name), func (start), arglen (n), arg (param),
+ notify_detached (notify), standalone (false)
{
create ();
}
@@ -57,7 +58,8 @@ class cygthread
zap_h ();
}
cygthread (LPTHREAD_START_ROUTINE start, LPVOID param, const char *name, HANDLE notify = NULL)
- : __name (name), func (start), arglen (0), arg (param), notify_detached (notify), standalone (false)
+ : __name (name), func (start), arglen (0), arg (param),
+ notify_detached (notify), standalone (false)
{
create ();
}