criu/include/restorer-log.h
Cyrill Gorcunov 95f770b61c logfd: Distinguish functions which do setup logdf
We have a few helper functions which all do setup
logfd but in different program flow context. So
rename them for grepability.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Acked-by: Pavel Emelyanov <xemul@parallels.com>
2012-03-02 01:05:43 +04:00

11 lines
331 B
C

#ifndef RESTORER_LOG_H__
#define RESTORER_LOG_H__
extern long vprint_num(char *buf, long num);
extern void write_hex_n(unsigned long num);
extern void write_num_n(long num);
extern void write_num(long num);
extern void write_string_n(char *str);
extern void write_string(char *str);
extern void restorer_set_logfd(int fd);
#endif