Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-09-11 04:25:57 +0400
committerChristopher Faylor <me@cgf.cx>2000-09-11 04:25:57 +0400
commit9149d76e50da76800d4394b1c8a7478ceeed94fa (patch)
tree28f08de5572be452a045fb48f73fdf8861c1fa90 /winsup/cygwin/signal.cc
parent10e1fce6a1122737578402681e0a522da6dfa7f2 (diff)
* 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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc
index f04adfd89..00322018e 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;