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-16 06:36:11 +0400
committerChristopher Faylor <me@cgf.cx>2000-09-16 06:36:11 +0400
commitf9f2ed0e2b3c889697ed11afba8a681a91e4d800 (patch)
treefa4b33615d07a6cd88276da8840736312691edb7 /winsup/cygwin/external.cc
parentcdfeaeb823db105ca8d23647da4eaf6fee224d0c (diff)
* exceptions.cc (handle_exceptions): Just "core dump" if SIGSEGV in signal
thread. * external.cc (fillout_pinfo): Fix compiler warning. * sigproc.h: Eliminate special asm naming for sig_dispatch_pending. * sigproc.cc (sig_send): Remove debugging statements.
Diffstat (limited to 'winsup/cygwin/external.cc')
-rw-r--r--winsup/cygwin/external.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/external.cc b/winsup/cygwin/external.cc
index 1bd86f5da..3a04453ed 100644
--- a/winsup/cygwin/external.cc
+++ b/winsup/cygwin/external.cc
@@ -48,7 +48,7 @@ fillout_pinfo (pid_t pid, int winpid)
if (!p)
{
- if (!winpid || (!nextpid && thispid != pid))
+ if (!winpid || (!nextpid && thispid != (DWORD) pid))
continue;
ep.pid = thispid;
ep.dwProcessId = cygwin_pid (thispid);