[git commit] mark get_shell_name FAST_FUNC

Denys Vlasenko vda.linux at googlemail.com
Wed Oct 3 07:42:21 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=fd77ea505ed1eb15161585a6e3b6ea7ae95ed6b3
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 include/libbb.h        |    2 +-
 libbb/get_shell_name.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/libbb.h b/include/libbb.h
index f22e58e..2059567 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1248,7 +1248,7 @@ extern void run_shell(const char *shell, int loginshell, const char *command, co
  * Note that getpwuid result might need xstrdup'ing
  * if there is a possibility of intervening getpwxxx() calls.
  */
-const char *get_shell_name(void);
+const char *get_shell_name(void) FAST_FUNC;
 
 #if ENABLE_SELINUX
 extern void renew_current_security_context(void) FAST_FUNC;
diff --git a/libbb/get_shell_name.c b/libbb/get_shell_name.c
index c930afd..5aebe9c 100644
--- a/libbb/get_shell_name.c
+++ b/libbb/get_shell_name.c
@@ -8,7 +8,7 @@
 
 #include "libbb.h"
 
-const char *get_shell_name(void)
+const char* FAST_FUNC get_shell_name(void)
 {
 	struct passwd *pw;
 	char *shell;


More information about the busybox-cvs mailing list