mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-04 02:51:31 -08:00
* syssignal.h (sys_signal): Declare the second argument to have
type signal_handler_t. We're told this is necessary for Linux.
This commit is contained in:
parent
dfd29450bf
commit
2e903afbc7
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ extern sigset_t empty_mask, full_mask, temp_mask;
|
|||
appears to be assumed in the source, for example data.c:arith_error() */
|
||||
typedef RETSIGTYPE (*signal_handler_t) (int);
|
||||
|
||||
signal_handler_t sys_signal (int signal_number, int (*action)());
|
||||
signal_handler_t sys_signal (int signal_number, signal_handler_t action);
|
||||
int sys_sigpause (sigset_t new_mask);
|
||||
sigset_t sys_sigblock (sigset_t new_mask);
|
||||
sigset_t sys_sigunblock (sigset_t new_mask);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue