diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-16 22:58:56 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-16 22:58:56 +0000 |
commit | 25591c322c9305bd54d3ab80cfaf01ef87640d77 (patch) | |
tree | 66ce77758e35f4faa2d5f611d0535365f2cba00a /include | |
parent | 7fc294cdfe1e7f4a12c44f984a698b0c0f609075 (diff) | |
download | busybox-w32-25591c322c9305bd54d3ab80cfaf01ef87640d77.tar.gz busybox-w32-25591c322c9305bd54d3ab80cfaf01ef87640d77.tar.bz2 busybox-w32-25591c322c9305bd54d3ab80cfaf01ef87640d77.zip |
libbb: introduce bb_signals and bb_signals_recursive,
which sets same handler for many signals. sig_catch is nuked
(bb_signals_recursive is more descriptive name).
*: use them as appropriate.
function old new delta
bb_signals_recursive - 95 +95
bb_signals - 52 +52
run_command 258 273 +15
svlogd_main 1368 1377 +9
runsv_main 1746 1752 +6
runsvdir_main 1643 1646 +3
UNSPEC_print 64 66 +2
time_main 1128 1127 -1
...
resize_main 246 210 -36
sig_catch 63 - -63
set_fatal_sighandler 85 14 -71
------------------------------------------------------------------------------
(add/remove: 2/1 grow/shrink: 5/24 up/down: 182/-548) Total: -366 bytes
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/include/libbb.h b/include/libbb.h index f505cc718..67afcdf94 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -274,14 +274,18 @@ char *xrealloc_getcwd_or_warn(char *cwd); | |||
274 | 274 | ||
275 | char *xmalloc_follow_symlinks(const char *path); | 275 | char *xmalloc_follow_symlinks(const char *path); |
276 | 276 | ||
277 | //TODO: signal(sid, f) is the same? then why? | 277 | //enum { |
278 | extern void sig_catch(int,void (*)(int)); | 278 | // BB_SIGS_FATAL = , |
279 | //#define sig_ignore(s) (sig_catch((s), SIG_IGN)) | 279 | //}; |
280 | //#define sig_uncatch(s) (sig_catch((s), SIG_DFL)) | 280 | void bb_signals(int sigs, void (*f)(int)); |
281 | extern void sig_block(int); | 281 | /* Unlike signal() and bb_signals, sets handler with sigaction() |
282 | extern void sig_unblock(int); | 282 | * and in a way that while signal handler is run, no other signals |
283 | /* UNUSED: extern void sig_blocknone(void); */ | 283 | * will be blocked: */ |
284 | extern void sig_pause(void); | 284 | void bb_signals_recursive(int sigs, void (*f)(int)); |
285 | void sig_block(int); | ||
286 | void sig_unblock(int); | ||
287 | /* UNUSED: void sig_blocknone(void); */ | ||
288 | void sig_pause(void); | ||
285 | 289 | ||
286 | 290 | ||
287 | void xsetgid(gid_t gid); | 291 | void xsetgid(gid_t gid); |