diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-11 21:05:42 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-11-11 21:05:42 +0100 |
commit | ab19ede65595f6c0daba1e9b6c7c0a2ede341fec (patch) | |
tree | 144f7f397a4c193e5af9b445d14fee7d471107d2 /libbb/xfuncs.c | |
parent | c096a6c2084b6d920182714beb842ebb40087182 (diff) | |
download | busybox-w32-ab19ede65595f6c0daba1e9b6c7c0a2ede341fec.tar.gz busybox-w32-ab19ede65595f6c0daba1e9b6c7c0a2ede341fec.tar.bz2 busybox-w32-ab19ede65595f6c0daba1e9b6c7c0a2ede341fec.zip |
tidy up O_NONBLOCK usage. use libbb functions in stty.
Added O_RDONLY where improves readability. Note: O_RDONLY == 0,
so it is there even if not specified.
function old new delta
stty_main 1289 1235 -54
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index e47b01dc1..aac46f414 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -27,12 +27,12 @@ | |||
27 | /* Turn on nonblocking I/O on a fd */ | 27 | /* Turn on nonblocking I/O on a fd */ |
28 | int FAST_FUNC ndelay_on(int fd) | 28 | int FAST_FUNC ndelay_on(int fd) |
29 | { | 29 | { |
30 | return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK); | 30 | return fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK); |
31 | } | 31 | } |
32 | 32 | ||
33 | int FAST_FUNC ndelay_off(int fd) | 33 | int FAST_FUNC ndelay_off(int fd) |
34 | { | 34 | { |
35 | return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK); | 35 | return fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_NONBLOCK); |
36 | } | 36 | } |
37 | 37 | ||
38 | int FAST_FUNC close_on_exec_on(int fd) | 38 | int FAST_FUNC close_on_exec_on(int fd) |