mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 10:16:41 +00:00
Since we're going to switch from int-fd-s to class-image soon the fdset name will not fit into the new terminology. This patch is sed -e 's/fdset/imgset/g' -i * sed -e 's/imgset_fd/img_from_set/g' -i * git mv include/fdset.h include/imgset.h Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org>
10 lines
260 B
C
10 lines
260 B
C
#ifndef __CR_SIGNALFD_H__
|
|
#define __CR_SIGNALFD_H__
|
|
|
|
struct cr_imgset;
|
|
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__ */
|