mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
Document SIG_* warning causes on Solaris.
This commit is contained in:
parent
2b6727bd8a
commit
f58de1bd67
1 changed files with 5 additions and 0 deletions
|
@ -85,6 +85,11 @@ static PyObject *DefaultHandler;
|
|||
static PyObject *IgnoreHandler;
|
||||
static PyObject *IntHandler;
|
||||
|
||||
/* On Solaris 8, gcc will produce a warning that the function
|
||||
declaration is not a prototype. This is caused by the definition of
|
||||
SIG_DFL as (void (*)())0; the correct declaration would have been
|
||||
(void (*)(int))0. */
|
||||
|
||||
static PyOS_sighandler_t old_siginthandler = SIG_DFL;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue