diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-11 00:25:57 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-11 00:25:57 +0000 |
commit | 9149d76e50da76800d4394b1c8a7478ceeed94fa (patch) | |
tree | 28f08de5572be452a045fb48f73fdf8861c1fa90 /winsup/cygwin/signal.cc | |
parent | 10e1fce6a1122737578402681e0a522da6dfa7f2 (diff) | |
download | newlib-9149d76e50da76800d4394b1c8a7478ceeed94fa.zip newlib-9149d76e50da76800d4394b1c8a7478ceeed94fa.tar.gz newlib-9149d76e50da76800d4394b1c8a7478ceeed94fa.tar.bz2 |
* 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.
Diffstat (limited to 'winsup/cygwin/signal.cc')
-rw-r--r-- | winsup/cygwin/signal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc index f04adfd..0032201 100644 --- a/winsup/cygwin/signal.cc +++ b/winsup/cygwin/signal.cc @@ -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; |