* newsym: Use correct prefix for generating imports.

* pinfo.cc (_pinfo::commune_send): Don't wait forever for a response from
another process.
This commit is contained in:
Christopher Faylor 2003-07-06 23:24:13 +00:00
parent f346ea770f
commit 88a628163e
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
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

View File

@ -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

View File

@ -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