]> sourceware.org Git - newlib-cygwin.git/commitdiff
* cygheap.cc (cygheap_fixup_in_child): Improve strace output.
authorChristopher Faylor <me@cgf.cx>
Fri, 26 Mar 2004 22:48:47 +0000 (22:48 +0000)
committerChristopher Faylor <me@cgf.cx>
Fri, 26 Mar 2004 22:48:47 +0000 (22:48 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/cygheap.cc

index e6c6a4bb690a6c45cd7356a3962fe86c68482988..a7e3486540e970b41a3d8064e95bfda98d1c0a9f 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-26  Christopher Faylor  <cgf@redhat.com>
+
+       * cygheap.cc (cygheap_fixup_in_child): Improve strace output.
+
 2004-03-26  Corinna Vinschen  <corinna@vinschen.de>
 
        * errno.cc (errmap): Map ERROR_SHARING_VIOLATION to EBUSY,
index b32afd027e712c82f4769289960968c39079933d..26db66ddd59d64d6994f45fc4d3dea8e6888656e 100644 (file)
@@ -162,7 +162,8 @@ cygheap_fixup_in_child (bool execed)
          if (!VirtualQuery ((LPCVOID) cygheap, &m, sizeof m))
            system_printf ("couldn't get memory info, %E");
 
-         system_printf ("Couldn't reserve space for cygwin's heap (%p <%p>) in child, %E", cygheap, newaddr);
+         system_printf ("Couldn't reserve %d bytes of space for cygwin's heap (%p <%p>) in child, %E",
+                        alloc_sz, cygheap, newaddr);
          api_fatal ("m.AllocationBase %p, m.BaseAddress %p, m.RegionSize %p, m.State %p\n",
                     m.AllocationBase, m.BaseAddress, m.RegionSize, m.State);
        }
This page took 0.035049 seconds and 5 git commands to generate.