diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-31 01:02:07 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-01-31 01:02:07 +0000 |
commit | cab28aa7de336b0a39ef43ce0eb035a2cab30d4d (patch) | |
tree | 1f42544e65cd60dea87e631942506f1a5b206823 /include | |
parent | 6c62246a3598efd3d1e9264f8d9f44d8d93a6453 (diff) | |
download | busybox-w32-cab28aa7de336b0a39ef43ce0eb035a2cab30d4d.tar.gz busybox-w32-cab28aa7de336b0a39ef43ce0eb035a2cab30d4d.tar.bz2 busybox-w32-cab28aa7de336b0a39ef43ce0eb035a2cab30d4d.zip |
init: preparatory patch, no code changes
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index e1a6d120b..0403281c6 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -353,8 +353,8 @@ enum { | |||
353 | void bb_signals(int sigs, void (*f)(int)) FAST_FUNC; | 353 | void bb_signals(int sigs, void (*f)(int)) FAST_FUNC; |
354 | /* Unlike signal() and bb_signals, sets handler with sigaction() | 354 | /* Unlike signal() and bb_signals, sets handler with sigaction() |
355 | * and in a way that while signal handler is run, no other signals | 355 | * and in a way that while signal handler is run, no other signals |
356 | * will be blocked: */ | 356 | * will be blocked; syscalls will not be restarted: */ |
357 | void bb_signals_recursive(int sigs, void (*f)(int)) FAST_FUNC; | 357 | void bb_signals_recursive_norestart(int sigs, void (*f)(int)) FAST_FUNC; |
358 | /* syscalls like read() will be interrupted with EINTR: */ | 358 | /* syscalls like read() will be interrupted with EINTR: */ |
359 | void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC; | 359 | void signal_no_SA_RESTART_empty_mask(int sig, void (*handler)(int)) FAST_FUNC; |
360 | /* syscalls like read() won't be interrupted (though select/poll will be): */ | 360 | /* syscalls like read() won't be interrupted (though select/poll will be): */ |