diff options
author | Denis Vlasenko | 2008-08-05 23:32:27 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-08-05 23:32:27 +0000 |
commit | 2afd5ab62ca5f2438a3953f37e738f73553595da (patch) | |
tree | f6406254bd52e449ac58851e370774ed29e449c2 /include | |
parent | e0143a1aad60e9141245034379469477006dba81 (diff) | |
download | busybox-2afd5ab62ca5f2438a3953f37e738f73553595da.zip busybox-2afd5ab62ca5f2438a3953f37e738f73553595da.tar.gz |
*: use get_console_fd() as appropriate, and make it fail on open error -
get_console_fd_or_die().
function old new delta
get_console_fd_or_die - 163 +163
loadkmap_main 211 201 -10
loadfont_main 440 430 -10
dumpkmap_main 218 208 -10
kbd_mode_main 158 146 -12
setkeycodes_main 156 143 -13
get_console_fd 163 - -163
------------------------------------------------------------------------------
(add/remove: 1/1 grow/shrink: 0/5 up/down: 163/-218) Total: -55 bytes
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 3996846..075fa05 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -287,7 +287,7 @@ extern int recursive_action(const char *fileName, unsigned flags, extern int device_open(const char *device, int mode) FAST_FUNC; enum { GETPTY_BUFSIZE = 16 }; /* more than enough for "/dev/ttyXXX" */ extern int xgetpty(char *line) FAST_FUNC; -extern int get_console_fd(void) FAST_FUNC; +extern int get_console_fd_or_die(void) FAST_FUNC; extern void console_make_active(int fd, const int vt_num) FAST_FUNC; extern char *find_block_device(const char *path) FAST_FUNC; /* bb_copyfd_XX print read/write errors and return -1 if they occur */ |