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/sigproc.h | |
parent | cdfeaeb823db105ca8d23647da4eaf6fee224d0c (diff) | |
download | newlib-f9f2ed0e2b3c889697ed11afba8a681a91e4d800.zip newlib-f9f2ed0e2b3c889697ed11afba8a681a91e4d800.tar.gz newlib-f9f2ed0e2b3c889697ed11afba8a681a91e4d800.tar.bz2 |
* 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/sigproc.h')
-rw-r--r-- | winsup/cygwin/sigproc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h index 915e54a..9dd3ce8 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -84,7 +84,7 @@ extern HANDLE signal_arrived; extern HANDLE parent_alive; BOOL __stdcall my_parent_is_alive (); -extern "C" int __stdcall sig_dispatch_pending (int force = FALSE) __asm__ ("sig_dispatch_pending"); +extern "C" int __stdcall sig_dispatch_pending (int force = FALSE); extern "C" void __stdcall set_process_mask (sigset_t newmask); int __stdcall sig_handle (int); void __stdcall sig_clear (int); |