* cygheap.cc (init_cheap): Just use any old address for the cygwin heap.

* exceptions.cc (signal_exit): Don't terminate the main thread.  Just try to
exit in this thread really quickly.
* signal.cc (kill_pgrp): Fix typo which caused pinfo structure to be assigned
incorrectly.
This commit is contained in:
Christopher Faylor
2000-09-11 00:25:57 +00:00
parent 10e1fce6a1
commit 9149d76e50
4 changed files with 29 additions and 20 deletions

View File

@ -185,7 +185,7 @@ kill_pgrp (pid_t pid, int sig)
winpids pids;
for (unsigned i = 0; i < pids.npids; i++)
{
pinfo p = pids[i];
pinfo p (pids[i]);
if (!proc_exists (p))
continue;