* 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

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