aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-07-06 23:24:13 +0000
committerChristopher Faylor <me@cgf.cx>2003-07-06 23:24:13 +0000
commit88a628163ee00baa8726be5fba04bcc76b5e1841 (patch)
tree8510d8b2442e83666e82aec5673ffce1ec3abcb3
parentf346ea770ffabd4cc6bc6d67f50199d60ca791f2 (diff)
downloadnewlib-88a628163ee00baa8726be5fba04bcc76b5e1841.zip
newlib-88a628163ee00baa8726be5fba04bcc76b5e1841.tar.gz
newlib-88a628163ee00baa8726be5fba04bcc76b5e1841.tar.bz2
* newsym: Use correct prefix for generating imports.
* pinfo.cc (_pinfo::commune_send): Don't wait forever for a response from another process.
-rw-r--r--winsup/cygwin/ChangeLog6
-rwxr-xr-xwinsup/cygwin/newsym2
-rw-r--r--winsup/cygwin/pinfo.cc2
3 files changed, 8 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 13749d0..16b75af 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,11 @@
2003-07-06 Christopher Faylor <cgf@redhat.com>
+ * newsym: Use correct prefix for generating imports.
+ * pinfo.cc (_pinfo::commune_send): Don't wait forever for a response
+ from another process.
+
+2003-07-06 Christopher Faylor <cgf@redhat.com>
+
* syscalls.cc (gethostid): Set thread affinity so that results are
predictable.
diff --git a/winsup/cygwin/newsym b/winsup/cygwin/newsym
index 688a8c6..2453afd 100755
--- a/winsup/cygwin/newsym
+++ b/winsup/cygwin/newsym
@@ -11,7 +11,7 @@ while [ -n "$1" ]; do
oldsym=$1; shift
cat <<EOF > newsym.dir/$newsym.s
.section .idata$6
- .extern __imp__$oldsym
+ .extern __imp_$oldsym
.extern __head_cygwin1_dll
.section .text
.global _$newsym
diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc
index 625f022..8899def 100644
--- a/winsup/cygwin/pinfo.cc
+++ b/winsup/cygwin/pinfo.cc
@@ -363,7 +363,7 @@ _pinfo::commune_send (DWORD code)
/* FIXME: Need something better than an busy loop here */
bool isalive;
- while ((isalive = alive ()))
+ for (int i = 0; (isalive = alive ()) || (i < 65536); i++)
if (myself->hello_pid <= 0)
break;
else