1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

RJK's general signal-handling robustness patch. Should fix the weird

spin behaviour occasionally seen after pterm's child process dies.

[originally from svn r2181]
This commit is contained in:
Simon Tatham
2002-11-02 14:35:57 +00:00
parent 406bc897b3
commit 93e9fadc75
5 changed files with 91 additions and 36 deletions

View File

@ -50,4 +50,7 @@ int next_socket(int *state, int *rwx);
#define strnicmp strncasecmp
#define stricmp strcasecmp
/* BSD-semantics version of signal() */
void (*putty_signal(int sig, void (*func)(int)))(int);
#endif