diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-16 02:36:11 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-16 02:36:11 +0000 |
commit | f9f2ed0e2b3c889697ed11afba8a681a91e4d800 (patch) | |
tree | fa4b33615d07a6cd88276da8840736312691edb7 /winsup/cygwin/external.cc | |
parent | cdfeaeb823db105ca8d23647da4eaf6fee224d0c (diff) | |
download | cygnal-f9f2ed0e2b3c889697ed11afba8a681a91e4d800.tar.gz cygnal-f9f2ed0e2b3c889697ed11afba8a681a91e4d800.tar.bz2 cygnal-f9f2ed0e2b3c889697ed11afba8a681a91e4d800.zip |
* 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.cc | 2 |
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); |