2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-29 13:28:27 +00:00

files-reg: Move struct file_remap to the header

We will need to use it in inotify code.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov 2012-12-06 11:10:10 +04:00 committed by Pavel Emelyanov
parent bae3324447
commit 746ac3fee5
2 changed files with 5 additions and 6 deletions

View File

@ -20,11 +20,6 @@
#include "files-reg.h"
struct file_remap {
char *path;
unsigned int users;
};
/*
* Ghost files are those not visible from the FS. Dumping them is
* nasty and the only way we have -- just carry its contents with

View File

@ -11,7 +11,11 @@
struct cr_fdset;
struct fd_parms;
struct file_remap;
struct file_remap {
char *path;
unsigned int users;
};
struct reg_file_info {
struct file_desc d;
RegFileEntry *rfe;