aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-09-23 23:56:17 +0000
committerChristopher Faylor <me@cgf.cx>2005-09-23 23:56:17 +0000
commit5cbcdfa9dddb6c96777d0319d82187054bfcfc69 (patch)
tree4b02b24fcdf1e800eca1188118356bf7d8096459
parent5e477e9a9b0bf9597f8f9a829edfe554ee97b140 (diff)
downloadnewlib-5cbcdfa9dddb6c96777d0319d82187054bfcfc69.zip
newlib-5cbcdfa9dddb6c96777d0319d82187054bfcfc69.tar.gz
newlib-5cbcdfa9dddb6c96777d0319d82187054bfcfc69.tar.bz2
* shared.cc (open_shared): Add crucial bit of debugging info.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/shared.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 2f2a6fc..9439d8e 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,9 @@
2005-09-23 Christopher Faylor <cgf@timesys.com>
+ * shared.cc (open_shared): Add crucial bit of debugging info.
+
+2005-09-23 Christopher Faylor <cgf@timesys.com>
+
Semi-reversion of always-exit-from-sigthread change of 2005-09-15.
* exceptions.cc (sigpacket::process): Eliminate return after call to
reinstated noreturn function.
diff --git a/winsup/cygwin/shared.cc b/winsup/cygwin/shared.cc
index fd20766..02c512f 100644
--- a/winsup/cygwin/shared.cc
+++ b/winsup/cygwin/shared.cc
@@ -155,7 +155,7 @@ open_shared (const char *name, int n, HANDLE& shared_h, DWORD size,
#endif
}
- debug_printf ("name %s, shared %p (wanted %p), h %p", name, shared, addr, shared_h);
+ debug_printf ("name %s, n %d, shared %p (wanted %p), h %p", name, n, shared, addr, shared_h);
return shared;
}