diff options
author | Christopher Faylor <me@cgf.cx> | 2001-04-27 18:50:59 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-04-27 18:50:59 +0000 |
commit | cba63823f808a747ad762d3a8d5a4d8ef6890e54 (patch) | |
tree | 9f7136cef4a65dba47cb4e550daf300e8fbeda50 /winsup/cygwin/sigproc.h | |
parent | 9572ecf9798a493965d173398d9db923c154a4c3 (diff) | |
download | newlib-cba63823f808a747ad762d3a8d5a4d8ef6890e54.zip newlib-cba63823f808a747ad762d3a8d5a4d8ef6890e54.tar.gz newlib-cba63823f808a747ad762d3a8d5a4d8ef6890e54.tar.bz2 |
* thread.cc (thread_init_wrapper): Use _REENT_INIT to initialize the reent
structure of newlib.
* sigproc.h (sig_send): Add exception parameter to sig_send.
* sigproc.cc (sig_send): Ditto. Use it when setting frame info.
* exceptions.cc (handle_exceptions): Use exception flag when calling sig_send.
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r-- | winsup/cygwin/sigproc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h index c239f5f..a346094 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -110,7 +110,8 @@ void __stdcall subproc_init (); void __stdcall sigproc_terminate (); BOOL __stdcall proc_exists (_pinfo *) __attribute__ ((regparm(1))); BOOL __stdcall pid_exists (pid_t) __attribute__ ((regparm(1))); -int __stdcall sig_send (_pinfo *, int, DWORD ebp = (DWORD) __builtin_frame_address (0)) __attribute__ ((regparm(3))); +int __stdcall sig_send (_pinfo *, int, DWORD ebp = (DWORD) __builtin_frame_address (0), + bool exception = 0) __attribute__ ((regparm(3))); void __stdcall signal_fixup_after_fork (); void __stdcall signal_fixup_after_exec (bool); |