1
0
Fork 0

Cleanup: Removed unused code

This commit is contained in:
Philipp Schafft 2018-06-20 06:40:21 +00:00
parent 11b9c61ae7
commit f9a1ced5c9
1 changed files with 0 additions and 15 deletions

View File

@ -99,7 +99,6 @@ typedef struct log_tag
static log_t loglist[LOG_MAXLOGS];
static int _get_log_id(void);
static void _release_log_id(int log_id);
static void _lock_logger(void);
static void _unlock_logger(void);
@ -614,15 +613,12 @@ void log_write(int log_id, unsigned priority, const char *cat, const char *func,
void log_write_direct(int log_id, const char *fmt, ...)
{
va_list ap;
time_t now;
char line[LOG_MAXLINELEN];
if (log_id < 0 || log_id >= LOG_MAXLOGS) return;
va_start(ap, fmt);
now = time(NULL);
_lock_logger();
__vsnprintf(line, LOG_MAXLINELEN, fmt, ap);
if (_log_open (log_id))
@ -659,17 +655,6 @@ static int _get_log_id(void)
return id;
}
static void _release_log_id(int log_id)
{
/* lock mutex */
_lock_logger();
loglist[log_id].in_use = 0;
/* unlock mutex */
_unlock_logger();
}
static void _lock_logger(void)
{
#ifndef _WIN32