aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/cygheap.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-09-16 01:47:09 +0000
committerChristopher Faylor <me@cgf.cx>2005-09-16 01:47:09 +0000
commit150f3bd16864bfb1a8ab10904924fcee7feeb621 (patch)
tree2abfee9cba967c6227d2391575f19210ecd6ade1 /winsup/cygwin/cygheap.cc
parenta3a9aac72d82414427d0f020b74a12c26905426c (diff)
downloadnewlib-150f3bd16864bfb1a8ab10904924fcee7feeb621.zip
newlib-150f3bd16864bfb1a8ab10904924fcee7feeb621.tar.gz
newlib-150f3bd16864bfb1a8ab10904924fcee7feeb621.tar.bz2
* 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/cygheap.cc')
-rw-r--r--winsup/cygwin/cygheap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc
index 6cbdf6e..fff2ad0 100644
--- a/winsup/cygwin/cygheap.cc
+++ b/winsup/cygwin/cygheap.cc
@@ -59,7 +59,7 @@ cygheap_fixup_in_child (bool execed)
cygheap_max = child_proc_info->cygheap;
cygheap = (init_cygheap *) cygheap_max;
_csbrk ((char *) child_proc_info->cygheap_max - (char *) cygheap);
- child_copy (child_proc_info->parent, child_proc_info->dwProcessId, "cygheap", cygheap, cygheap_max);
+ child_copy (child_proc_info->parent, child_proc_info->dwProcessId, "cygheap for exec", cygheap, cygheap_max);
cygheap_init ();
debug_fixup_after_fork_exec ();