diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:35:37 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:35:37 +0200 |
commit | adf922ec2800d53f5eedd469cf99c55946caeb43 (patch) | |
tree | d6b51f80928fdbf1892c3d4dbaae72fb288b88b9 /util-linux | |
parent | a7bb3c1396056248a71ea188f217de3f4876947e (diff) | |
download | busybox-w32-adf922ec2800d53f5eedd469cf99c55946caeb43.tar.gz busybox-w32-adf922ec2800d53f5eedd469cf99c55946caeb43.tar.bz2 busybox-w32-adf922ec2800d53f5eedd469cf99c55946caeb43.zip |
*: a few more NOINLINEs
function old new delta
print_linkinfo - 815 +815
do_msg - 783 +783
INET_setroute - 757 +757
varvalue - 746 +746
do_sem - 637 +637
inflate_codes - 617 +617
INET6_setroute - 491 +491
edir - 370 +370
sync_cursor - 298 +298
update_utmp - 246 +246
searchLines - 165 +165
setup_alarm - 144 +144
may_wakeup - 101 +101
getNum 566 371 -195
refresh 1166 848 -318
rtcwake_main 809 479 -330
getty_main 2396 1921 -475
chpst_main 1373 746 -627
inflate_unzip_internal 1335 567 -768
evalvar 1384 612 -772
ipaddr_list_or_flush 2160 1246 -914
route_main 1585 245 -1340
ipcs_main 2523 1049 -1474
------------------------------------------------------------------------------
(add/remove: 13/0 grow/shrink: 0/10 up/down: 6170/-7213) Total: -1043 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/ipcs.c | 4 | ||||
-rw-r--r-- | util-linux/rtcwake.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/ipcs.c b/util-linux/ipcs.c index c8c6d76fa..c1103b093 100644 --- a/util-linux/ipcs.c +++ b/util-linux/ipcs.c | |||
@@ -242,7 +242,7 @@ static NOINLINE void do_shm(void) | |||
242 | } | 242 | } |
243 | 243 | ||
244 | 244 | ||
245 | static void do_sem(void) | 245 | static NOINLINE void do_sem(void) |
246 | { | 246 | { |
247 | int maxid, semid, id; | 247 | int maxid, semid, id; |
248 | struct semid_ds semary; | 248 | struct semid_ds semary; |
@@ -348,7 +348,7 @@ static void do_sem(void) | |||
348 | } | 348 | } |
349 | 349 | ||
350 | 350 | ||
351 | static void do_msg(void) | 351 | static NOINLINE void do_msg(void) |
352 | { | 352 | { |
353 | int maxid, msqid, id; | 353 | int maxid, msqid, id; |
354 | struct msqid_ds msgque; | 354 | struct msqid_ds msgque; |
diff --git a/util-linux/rtcwake.c b/util-linux/rtcwake.c index 278acf347..ee2f031b4 100644 --- a/util-linux/rtcwake.c +++ b/util-linux/rtcwake.c | |||
@@ -32,7 +32,7 @@ | |||
32 | 32 | ||
33 | static time_t rtc_time; | 33 | static time_t rtc_time; |
34 | 34 | ||
35 | static bool may_wakeup(const char *rtcname) | 35 | static NOINLINE bool may_wakeup(const char *rtcname) |
36 | { | 36 | { |
37 | ssize_t ret; | 37 | ssize_t ret; |
38 | char buf[128]; | 38 | char buf[128]; |
@@ -50,7 +50,7 @@ static bool may_wakeup(const char *rtcname) | |||
50 | return strncmp(buf, "enabled\n", 8) == 0; | 50 | return strncmp(buf, "enabled\n", 8) == 0; |
51 | } | 51 | } |
52 | 52 | ||
53 | static void setup_alarm(int fd, time_t *wakeup) | 53 | static NOINLINE void setup_alarm(int fd, time_t *wakeup) |
54 | { | 54 | { |
55 | struct tm *tm; | 55 | struct tm *tm; |
56 | struct linux_rtc_wkalrm wake; | 56 | struct linux_rtc_wkalrm wake; |