aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-11-02 14:19:51 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-11-02 14:19:51 +0100
commit8131eea3dce5fba0dfb78e6083d1730423fad20b (patch)
treec098d7ba6ef9f4745425a29a330480e6088d6d9a /networking/libiproute
parent0d8ea64af618dc83c3291b3b598636ed3d0854e4 (diff)
downloadbusybox-w32-8131eea3dce5fba0dfb78e6083d1730423fad20b.tar.gz
busybox-w32-8131eea3dce5fba0dfb78e6083d1730423fad20b.tar.bz2
busybox-w32-8131eea3dce5fba0dfb78e6083d1730423fad20b.zip
*: introduce and use ffulsh_all()
function old new delta buffer_fill_and_print 179 196 +17 fflush_all - 9 +9 spawn 87 92 +5 rtcwake_main 455 453 -2 ... alarm_intr 93 84 -9 readcmd 1072 1062 -10 bb_ask 345 333 -12 more_main 845 832 -13 flush_stdout_stderr 42 23 -19 xfflush_stdout 27 - -27 flush_stderr 30 - -30 ------------------------------------------------------------------------------ (add/remove: 1/2 grow/shrink: 2/50 up/down: 31/-397) Total: -366 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute')
-rw-r--r--networking/libiproute/ipaddress.c4
-rw-r--r--networking/libiproute/iprule.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/networking/libiproute/ipaddress.c b/networking/libiproute/ipaddress.c
index 86d27548b..fcf9623e4 100644
--- a/networking/libiproute/ipaddress.c
+++ b/networking/libiproute/ipaddress.c
@@ -182,7 +182,7 @@ static NOINLINE int print_linkinfo(const struct nlmsghdr *n)
182 } 182 }
183 } 183 }
184 bb_putchar('\n'); 184 bb_putchar('\n');
185 /*fflush(stdout);*/ 185 /*fflush_all();*/
186 return 0; 186 return 0;
187} 187}
188 188
@@ -344,7 +344,7 @@ static int FAST_FUNC print_addrinfo(const struct sockaddr_nl *who UNUSED_PARAM,
344 printf(" %s", buf); 344 printf(" %s", buf);
345 } 345 }
346 bb_putchar('\n'); 346 bb_putchar('\n');
347 /*fflush(stdout);*/ 347 /*fflush_all();*/
348 return 0; 348 return 0;
349} 349}
350 350
diff --git a/networking/libiproute/iprule.c b/networking/libiproute/iprule.c
index e52473117..659f3a9f0 100644
--- a/networking/libiproute/iprule.c
+++ b/networking/libiproute/iprule.c
@@ -151,7 +151,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
151 fputs(rtnl_rtntype_n2a(r->rtm_type, b1), stdout); 151 fputs(rtnl_rtntype_n2a(r->rtm_type, b1), stdout);
152 152
153 bb_putchar('\n'); 153 bb_putchar('\n');
154 /*fflush(stdout);*/ 154 /*fflush_all();*/
155 return 0; 155 return 0;
156} 156}
157 157