mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 18:19:39 +00:00
The is_foo_link readlinks the lfd to check. This makes anon-inodes dumping readlink several times to find proper dump ops. Optimize this thing. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
10 lines
259 B
C
10 lines
259 B
C
#ifndef __CR_SIGNALFD_H__
|
|
#define __CR_SIGNALFD_H__
|
|
|
|
struct cr_fdset;
|
|
struct fd_parms;
|
|
extern int is_signalfd_link(char *link);
|
|
extern const struct fdtype_ops signalfd_dump_ops;
|
|
extern struct collect_image_info signalfd_cinfo;
|
|
|
|
#endif /* __CR_SIGNALFD_H__ */
|