mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-24 02:47:32 +00:00
17 lines
398 B
C
17 lines
398 B
C
|
#ifndef FILES_REG_H__
|
||
|
#define FILES_REG_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
struct cr_fdset;
|
||
|
struct fd_parms;
|
||
|
|
||
|
extern int open_reg_by_id(u32 id);
|
||
|
extern void clear_ghost_files(void);
|
||
|
extern int collect_reg_files(void);
|
||
|
|
||
|
extern int dump_reg_file(struct fd_parms *p, int lfd, const struct cr_fdset *cr_fdset);
|
||
|
extern int dump_one_reg_file(int lfd, u32 id, const struct fd_parms *p);
|
||
|
|
||
|
#endif /* FILES_REG_H__ */
|