mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-24 02:35:41 +00:00
Currently fdinfo dumps for each task, so CR_FD_FDINFO is in cr_fdset. A few tasks can share one fd table and the set of descriptors will be dumped once and a image name will contain files_id instead of pid. In this case CR_FD_FDINFO will go away from cr_fdset. Signed-off-by: Andrey Vagin <avagin@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
10 lines
208 B
C
10 lines
208 B
C
#ifndef __CR_FIFO_H__
|
|
#define __CR_FIFO_H__
|
|
|
|
struct fd_parms;
|
|
struct cr_fdset;
|
|
|
|
extern int dump_fifo(struct fd_parms *p, int lfd, const int fdinfo);
|
|
extern int collect_fifo(void);
|
|
|
|
#endif /* __CR_FIFO_H__ */
|