diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-06-17 03:37:43 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-06-17 03:37:43 +0200 |
commit | a1a448347e71c9899ad1500cbd8739fd82e1bb91 (patch) | |
tree | b6f60da8a298eb37b672b68245e664dc04951d7f /include | |
parent | 901a53baecd5b8a580f63eb23d481f553de72634 (diff) | |
download | busybox-w32-a1a448347e71c9899ad1500cbd8739fd82e1bb91.tar.gz busybox-w32-a1a448347e71c9899ad1500cbd8739fd82e1bb91.tar.bz2 busybox-w32-a1a448347e71c9899ad1500cbd8739fd82e1bb91.zip |
libbb: split bb_get_chunk_from_file and bb_get_chunk_with_continuation
This also moves bb_get_chunk_with_continuation into its sole user,
parse_config.c.
This allows to optimize both functions separately,
they need to be optimized for speed.
(this need was highlighted by slow modprobe caused in part by slow
bb_get_chunk_with_continuation in config parser).
function old new delta
bb_get_chunk_from_file 7 130 +123
config_read 457 558 +101
bb_get_chunk_with_continuation 194 - -194
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 2/0 up/down: 224/-194) Total: 30 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 2d46061da..5d2b4c8c1 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -730,8 +730,12 @@ extern void xclose(int fd) FAST_FUNC; | |||
730 | /* Reads and prints to stdout till eof, then closes FILE. Exits on error: */ | 730 | /* Reads and prints to stdout till eof, then closes FILE. Exits on error: */ |
731 | extern void xprint_and_close_file(FILE *file) FAST_FUNC; | 731 | extern void xprint_and_close_file(FILE *file) FAST_FUNC; |
732 | 732 | ||
733 | /* Reads a line from a text file, up to a newline or NUL byte, inclusive. | ||
734 | * Returns malloc'ed char*. If end is NULL '\n' isn't considered | ||
735 | * end of line. If end isn't NULL, length of the chunk is stored in it. | ||
736 | * Returns NULL if EOF/error. | ||
737 | */ | ||
733 | extern char *bb_get_chunk_from_file(FILE *file, int *end) FAST_FUNC; | 738 | extern char *bb_get_chunk_from_file(FILE *file, int *end) FAST_FUNC; |
734 | extern char *bb_get_chunk_with_continuation(FILE *file, int *end, int *lineno) FAST_FUNC; | ||
735 | /* Reads up to (and including) TERMINATING_STRING: */ | 739 | /* Reads up to (and including) TERMINATING_STRING: */ |
736 | extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string) FAST_FUNC RETURNS_MALLOC; | 740 | extern char *xmalloc_fgets_str(FILE *file, const char *terminating_string) FAST_FUNC RETURNS_MALLOC; |
737 | /* Same, with limited max size, and returns the length (excluding NUL): */ | 741 | /* Same, with limited max size, and returns the length (excluding NUL): */ |