criu/stats.c
Pavel Emelyanov d770f4ef23 stats: Protobuf file introduction introduction
We'll have one more "image" file generated by dump and (surprisingly)
restore commands -- the stats one. It will contain in a single pb
object all the statistics collected by dump/restore.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2013-05-13 13:50:15 +04:00

8 lines
123 B
C

#include <unistd.h>
#include "protobuf.h"
#include "stats.h"
void show_stats(int fd)
{
pb_show_vertical(fd, PB_STATS);
}