diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 4c9c83bd1..a3f76a206 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -593,7 +593,7 @@ void bb_signals(int sigs, void (*f)(int)) FAST_FUNC; | |||
593 | /* Unlike signal() and bb_signals, sets handler with sigaction() | 593 | /* Unlike signal() and bb_signals, sets handler with sigaction() |
594 | * and in a way that while signal handler is run, no other signals | 594 | * and in a way that while signal handler is run, no other signals |
595 | * will be blocked; syscalls will not be restarted: */ | 595 | * will be blocked; syscalls will not be restarted: */ |
596 | void bb_signals_recursive_norestart(int sigs, void (*f)(int)) FAST_FUNC; | 596 | void bb_signals_norestart(int sigs, void (*f)(int)) FAST_FUNC; |
597 | /* syscalls like read() will be interrupted with EINTR: */ | 597 | /* syscalls like read() will be interrupted with EINTR: */ |
598 | void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC; | 598 | void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC; |
599 | /* syscalls like read() won't be interrupted (though select/poll will be): */ | 599 | /* syscalls like read() won't be interrupted (though select/poll will be): */ |