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:
authorChristopher Faylor <me@cgf.cx>2010-09-12 19:49:30 +0400
committerChristopher Faylor <me@cgf.cx>2010-09-12 19:49:30 +0400
commit6c6eb02b3368ba911797cead4e58879e3796bbf5 (patch)
tree1b481dfdd98eb3eb23bd641feb3bb43c21d4fca2 /winsup/cygwin/cygthread.h
parent18df393573ce897b910c44fb734de3d5560ff33e (diff)
* cygthread.h (cygthread::cygthread): Reorganize slightly.
* dcrt0.cc (dll_crt0_0): Move sigproc initialization later to ensure everything we need has been set up. (dll_crt0_1): Streamline some logic slightly. * sigproc.cc (no_signals_available): Add back dropped test for macro parameter. * fhandler_console.cc (fhandler_console::write): Show a little bit of what's being written to the console in debugging output.
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 ();
}