mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
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>
11 lines
331 B
C
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
|