mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 09:39:13 +00:00
Only the fact of the fd presence, its flags and fown and the sigmask. The sigpending state is tightly coupled with the task's sigpending state which is not yet supported. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
10 lines
325 B
C
10 lines
325 B
C
#ifndef __CR_SIGNALFD_H__
|
|
#define __CR_SIGNALFD_H__
|
|
struct cr_fdset;
|
|
struct fd_parms;
|
|
struct cr_options;
|
|
extern int is_signalfd_link(int lfd);
|
|
extern int dump_signalfd(struct fd_parms *p, int lfd, const struct cr_fdset *set);
|
|
extern void show_signalfd(int fd, struct cr_options *o);
|
|
extern int collect_signalfd(void);
|
|
#endif
|