summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-02-09 00:06:10 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2019-02-09 00:06:10 -0500
commite0a35b75c02b0bbe10bf47a4d8e4d2779b65ea9c (patch)
tree77bf8cb1699b78262c9f39970935d356693d2d14 /src/log.h
parent23b0d867c5454423fe153849a7ed7114a10e056b (diff)
downloadlighttpd-git-e0a35b75c02b0bbe10bf47a4d8e4d2779b65ea9c.tar.gz
[core] mark log_error_write*() funcs cold
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
index 815b6ab1..b269762c 100644
--- a/src/log.h
+++ b/src/log.h
@@ -10,7 +10,10 @@ int log_clock_gettime_realtime (struct timespec *ts);
ssize_t write_all(int fd, const void* buf, size_t count);
+__attribute_cold__
int log_error_write(server *srv, const char *filename, unsigned int line, const char *fmt, ...);
+
+__attribute_cold__
int log_error_write_multiline_buffer(server *srv, const char *filename, unsigned int line, buffer *multiline, const char *fmt, ...);
#endif