Merge pull request #205 from bentley/master

OpenBSD doesn't have sa_restorer.
This commit is contained in:
Matthias Köfferlein 2018-12-11 21:17:55 +01:00 committed by GitHub
commit 64d949d2c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ void install_signal_handlers ()
act.sa_sigaction = signal_handler;
sigemptyset (&act.sa_mask);
act.sa_flags = SA_SIGINFO;
#if !defined(__APPLE__)
#if !defined(__APPLE__) && !defined(__OpenBSD__)
act.sa_restorer = 0;
#endif