diff options
author | Christopher Faylor <me@cgf.cx> | 2005-09-16 01:47:09 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-09-16 01:47:09 +0000 |
commit | 150f3bd16864bfb1a8ab10904924fcee7feeb621 (patch) | |
tree | 2abfee9cba967c6227d2391575f19210ecd6ade1 /winsup/cygwin/fork.cc | |
parent | a3a9aac72d82414427d0f020b74a12c26905426c (diff) | |
download | cygnal-150f3bd16864bfb1a8ab10904924fcee7feeb621.tar.gz cygnal-150f3bd16864bfb1a8ab10904924fcee7feeb621.tar.bz2 cygnal-150f3bd16864bfb1a8ab10904924fcee7feeb621.zip |
* sigproc.cc (no_signals_available): Return true if sending to self from the
signal thread.
(wait_sig): Correct so that WaitForSingleObject is called when hMainThread is
!= 0, rather than the reverse.
* cygheap.cc (cygheap_fixup_in_child): Clarify potential error message.
* fork.cc (fork_copy): Cosmetic change.
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r-- | winsup/cygwin/fork.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc index f16eabc32..92e27aa78 100644 --- a/winsup/cygwin/fork.cc +++ b/winsup/cygwin/fork.cc @@ -62,7 +62,7 @@ stack_base (child_info_fork &ch) The result is a boolean indicating success. */ static int -fork_copy (PROCESS_INFORMATION &pi, const char *what, ...) +fork_copy (PROCESS_INFORMATION& pi, const char *what, ...) { va_list args; char *low; |