diff options
author | Christopher Faylor <me@cgf.cx> | 2005-06-15 22:50:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-06-15 22:50:31 +0000 |
commit | a9c461626eac4c32b5b0a197909c81b62e7c8269 (patch) | |
tree | e9ffe515b2235a58f2bc79e2ae3ef239be22af9e /winsup/cygwin/dcrt0.cc | |
parent | 0fc9cf11f84797e28168fbbc1d63a72fc50b7608 (diff) | |
download | cygnal-a9c461626eac4c32b5b0a197909c81b62e7c8269.tar.gz cygnal-a9c461626eac4c32b5b0a197909c81b62e7c8269.tar.bz2 cygnal-a9c461626eac4c32b5b0a197909c81b62e7c8269.zip |
* cygthread.cc (cygthread::detach): Fix debugging output.
* dcrt0.cc (dll_crt0_1): Create signal_arrived early -- before any filename
manipulation.
* sigproc.cc (sigproc_init): Don't create signal_arrived here.
* fork.cc (fork_child): Ditto.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r-- | winsup/cygwin/dcrt0.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc index ea0edbd0c..b119ba201 100644 --- a/winsup/cygwin/dcrt0.cc +++ b/winsup/cygwin/dcrt0.cc @@ -743,6 +743,8 @@ dll_crt0_1 (char *) strace.microseconds (); #endif + create_signal_arrived (); + /* Initialize debug muto, if DLL is built with --enable-debugging. Need to do this before any helper threads start. */ debug_init (); |