diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-06-06 00:18:45 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-06-06 00:18:45 -0400 |
commit | 6f8f3edfe8dd70e24105d889f664ff033eb0555e (patch) | |
tree | c9a74b97b9c9cc01cd2608ba1506f8c70f2d8df6 /src/libudev/log.h | |
parent | ac6af1454474115a0105f07c5704e13e40d0ff0e (diff) |
Round 3 of remove unused functions from src/libudev/{conf-files,hashmap,util}
The following functions were removed:
strv_env_get_n
strv_env_get
conf_files_list
hashmap_remove
hashmap_move
log_dump_internal
parse_uid
read_full_file
strstrip
file_in_same_dir
cunescape
cunescape_length
cunescape_length_with_prefix
xescape
dirent_is_file
close_all_fds
read_one_char
ask
reset_terminal_fd
reset_terminal
flush_fd
loop_read
get_ctty_devnr
get_ctty
rm_rf_children
rm_rf_children_dangerous
rm_rf
status_vprintf
fd_columns
columns
fd_lines
lines
on_tty
ellipsize
ellipsize_mem
touch
unquote
resolve_dev_console
tty_is_vc
vtnr_from_tty
terminal_vhangup_fd
terminal_vhangup
file_is_priv_sticky
signal_from_string
fd_wait_for_event
memdup
memdup_multiply
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/log.h')
-rw-r--r-- | src/libudev/log.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libudev/log.h b/src/libudev/log.h index fab0100b6a..0a15adb41c 100644 --- a/src/libudev/log.h +++ b/src/libudev/log.h @@ -73,14 +73,6 @@ int log_oom_internal( int line, const char *func); -/* This modifies the buffer passed! */ -int log_dump_internal( - int level, - const char*file, - int line, - const char *func, - char *buffer); - _noreturn_ void log_assert_failed( const char *text, const char *file, @@ -103,9 +95,6 @@ _noreturn_ void log_assert_failed_unreachable( #define log_oom() log_oom_internal(__FILE__, __LINE__, __func__) -/* This modifies the buffer passed! */ -#define log_dump(level, buffer) log_dump_internal(level, __FILE__, __LINE__, __func__, buffer) - const char *log_target_to_string(LogTarget target) _const_; LogTarget log_target_from_string(const char *s) _pure_; |