mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-24 18:49:44 +00:00
It's only required for making pipe_id, but making it is better to be done in place and using the st_ino only. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
19 lines
436 B
C
19 lines
436 B
C
#ifndef FILE_IDS_H__
|
|
#define FILE_IDS_H__
|
|
|
|
#include "compiler.h"
|
|
#include "types.h"
|
|
#include "rbtree.h"
|
|
|
|
#define FD_PID_INVALID (-2U)
|
|
#define FD_DESC_INVALID (-3U)
|
|
|
|
#define MAKE_FD_GENID(dev, ino, pos) \
|
|
(((u32)(dev) ^ (u32)(ino) ^ (u32)(pos)))
|
|
|
|
struct fdinfo_entry;
|
|
extern int fd_id_generate(pid_t pid, struct fdinfo_entry *fe);
|
|
extern u32 fd_id_generate_special(void);
|
|
extern void fd_id_show_tree(void);
|
|
|
|
#endif /* FILE_IDS_H__ */
|