diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-01 11:11:24 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-01 11:11:24 +0000 |
commit | 58d60c3333b988feb72eb867332d9ad773957810 (patch) | |
tree | 1c6d46f7642c863462198e144cd49ca051c8458f /include | |
parent | 49b5c516b5f5cb72ba05d5584e574b4a48cee7c1 (diff) | |
download | busybox-w32-58d60c3333b988feb72eb867332d9ad773957810.tar.gz busybox-w32-58d60c3333b988feb72eb867332d9ad773957810.tar.bz2 busybox-w32-58d60c3333b988feb72eb867332d9ad773957810.zip |
*: introduce and use xfork()
function old new delta
xfork - 20 +20
msh_main 1377 1380 +3
mod_process 455 446 -9
forkexit_or_rexec 30 17 -13
expand_variables 1434 1421 -13
open_transformer 91 76 -15
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/4 up/down: 23/-50) Total: -27 bytes
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 33e465cf4..67eef6dbb 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -719,6 +719,9 @@ int bb_execvp(const char *file, char *const argv[]) FAST_FUNC; | |||
719 | #define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__) | 719 | #define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__) |
720 | #endif | 720 | #endif |
721 | 721 | ||
722 | #if BB_MMU | ||
723 | pid_t xfork(void) FAST_FUNC; | ||
724 | #endif | ||
722 | pid_t xvfork(void) FAST_FUNC; | 725 | pid_t xvfork(void) FAST_FUNC; |
723 | 726 | ||
724 | /* NOMMU friendy fork+exec */ | 727 | /* NOMMU friendy fork+exec */ |