mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-27 12:04:24 +00:00
No functional changes, just a code move. TODO: * need to write personal make_gen_id implementations for special files (device and pos is const for them effectively) * need to merge dump ops with restore ones (file_desc_ops) Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
9 lines
261 B
C
9 lines
261 B
C
#ifndef __CR_PIPES_H__
|
|
#define __CR_PIPES_H__
|
|
extern int collect_pipes(void);
|
|
extern void mark_pipe_master(void);
|
|
int init_pipes_dump(void);
|
|
void fini_pipes_dump(void);
|
|
int dump_pipe(struct fd_parms *p, int lfd,
|
|
const struct cr_fdset *cr_fdset);
|
|
#endif
|