mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 17:49:13 +00:00
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>
8 lines
123 B
C
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);
|
|
}
|