From 9149d76e50da76800d4394b1c8a7478ceeed94fa Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 11 Sep 2000 00:25:57 +0000 Subject: * 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. --- winsup/cygwin/signal.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/signal.cc') 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; -- cgit v1.2.3