mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-27 20:37:57 +00:00
There are a lot of lines, which are longer than 79: (04.331172)pie: 1: Error (criu/pie/restorer.c:460): seccomp: Unexpected tid -> (04.331172)pie: 1: 1 != 1 Signed-off-by: Andrei Vagin <avagin@virtuozzo.com> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
16 lines
611 B
C
16 lines
611 B
C
#ifndef COMPEL_PLUGIN_STD_LOG_H__
|
|
#define COMPEL_PLUGIN_STD_LOG_H__
|
|
|
|
#define STD_LOG_SIMPLE_CHUNK 256
|
|
|
|
extern void std_log_set_fd(int fd);
|
|
extern void std_log_set_loglevel(unsigned int level);
|
|
extern void std_log_set_start(struct timeval *tv);
|
|
extern int std_vprint_num(char *buf, int blen, int num, char **ps);
|
|
extern void std_sprintf(char output[STD_LOG_SIMPLE_CHUNK], const char *format, ...)
|
|
__attribute__ ((__format__ (__printf__, 2, 3)));
|
|
extern void print_on_level(unsigned int loglevel, const char *format, ...)
|
|
__attribute__ ((__format__ (__printf__, 2, 3)));
|
|
|
|
#endif /* COMPEL_PLUGIN_STD_LOG_H__ */
|