aboutsummaryrefslogtreecommitdiff
path: root/libbb/find_pid_by_name.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-27 02:52:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-27 02:52:20 +0000
commitdefc1ea34074e7882724c460260d307cdf981a70 (patch)
treefca9b9a5fe243f9c0c76b84824ea2ff92ea8e589 /libbb/find_pid_by_name.c
parent26bc57d8b26425f23f4be974cce7bf35c95c9a1a (diff)
downloadbusybox-w32-defc1ea34074e7882724c460260d307cdf981a70.tar.gz
busybox-w32-defc1ea34074e7882724c460260d307cdf981a70.tar.bz2
busybox-w32-defc1ea34074e7882724c460260d307cdf981a70.zip
*: introduce and use FAST_FUNC: regparm on i386, otherwise no-on
text data bss dec hex filename 808035 611 6868 815514 c719a busybox_old 804472 611 6868 811951 c63af busybox_unstripped
Diffstat (limited to 'libbb/find_pid_by_name.c')
-rw-r--r--libbb/find_pid_by_name.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c
index 8dcdb13bc..ae2f11643 100644
--- a/libbb/find_pid_by_name.c
+++ b/libbb/find_pid_by_name.c
@@ -48,7 +48,7 @@ and therefore comm field contains "exe".
48 * Returns a list of all matching PIDs 48 * Returns a list of all matching PIDs
49 * It is the caller's duty to free the returned pidlist. 49 * It is the caller's duty to free the returned pidlist.
50 */ 50 */
51pid_t* find_pid_by_name(const char* procName) 51pid_t* FAST_FUNC find_pid_by_name(const char* procName)
52{ 52{
53 pid_t* pidList; 53 pid_t* pidList;
54 int i = 0; 54 int i = 0;
@@ -74,7 +74,7 @@ pid_t* find_pid_by_name(const char* procName)
74 return pidList; 74 return pidList;
75} 75}
76 76
77pid_t *pidlist_reverse(pid_t *pidList) 77pid_t* FAST_FUNC pidlist_reverse(pid_t *pidList)
78{ 78{
79 int i = 0; 79 int i = 0;
80 while (pidList[i]) 80 while (pidList[i])