/usr/include/compel/log.h is in criu 3.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #ifndef __COMPEL_UAPI_LOG_H__
#define __COMPEL_UAPI_LOG_H__
#include <stdarg.h>
#include <compel/loglevels.h>
typedef void (*compel_log_fn)(unsigned int lvl, const char *fmt, va_list parms);
extern void compel_log_init(compel_log_fn log_fn, unsigned int level);
extern unsigned int compel_log_get_loglevel(void);
#endif
|