41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
#ifndef _LOG_H_
|
|
#define _LOG_H_
|
|
#include "first.h"
|
|
|
|
#include "base_decls.h"
|
|
#include "buffer.h"
|
|
|
|
extern time_t log_epoch_secs;
|
|
|
|
struct timespec; /* declaration */
|
|
int log_clock_gettime_realtime (struct timespec *ts);
|
|
|
|
ssize_t write_all(int fd, const void* buf, size_t count);
|
|
|
|
struct log_error_st {
|
|
enum { ERRORLOG_FILE, ERRORLOG_FD, ERRORLOG_SYSLOG, ERRORLOG_PIPE } errorlog_mode;
|
|
int errorlog_fd;
|
|
buffer b;
|
|
const char *fn;
|
|
};
|
|
|
|
__attribute_cold__
|
|
log_error_st * log_error_st_init (void);
|
|
|
|
__attribute_cold__
|
|
void log_error_st_free (log_error_st *errh);
|
|
|
|
__attribute_cold__
|
|
__attribute_format__((__printf__, 4, 5))
|
|
void log_error(log_error_st *errh, const char *filename, unsigned int line, const char *fmt, ...);
|
|
|
|
__attribute_cold__
|
|
__attribute_format__((__printf__, 4, 5))
|
|
void log_perror(log_error_st *errh, const char *filename, unsigned int line, const char *fmt, ...);
|
|
|
|
__attribute_cold__
|
|
__attribute_format__((__printf__, 5, 6))
|
|
void log_error_multiline_buffer(log_error_st *errh, const char *filename, unsigned int line, const buffer *multiline, const char *fmt, ...);
|
|
|
|
#endif
|