diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-05 04:53:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-05 04:53:17 +0000 |
commit | a5855dc3417cadce2aa4a356354817870487319d (patch) | |
tree | 14021b19401aa2bf546f585d2296dd2cc197002a /winsup/cygwin/exceptions.cc | |
parent | 1daf97f97e2a27936ca27db303000b7ea4bc80d6 (diff) | |
download | newlib-a5855dc3417cadce2aa4a356354817870487319d.zip newlib-a5855dc3417cadce2aa4a356354817870487319d.tar.gz newlib-a5855dc3417cadce2aa4a356354817870487319d.tar.bz2 |
* exceptions.cc (interruptible): Add extra debugging.
* sigproc.h (wait_sig): Fill in frame pointer, by default, prior to calling or
suffer confusion due to September 7 change below.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 5fcb69a..187e937 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -593,7 +593,7 @@ interruptible (DWORD pc, int testvalid = 0) MEMORY_BASIC_INFORMATION m; memset (&m, 0, sizeof m); if (!VirtualQuery ((LPCVOID) pc, &m, sizeof m)) - sigproc_printf ("couldn't get memory info, %E"); + sigproc_printf ("couldn't get memory info, pc %p, %E", pc); char *checkdir = (char *) alloca (windows_system_directory_length + 4); memset (checkdir, 0, sizeof (checkdir)); |