mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-25 11:04:35 +00:00
v2: - Move everything into eventpoll.[ch] - Use rst_file_params Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
18 lines
468 B
C
18 lines
468 B
C
#ifndef EVENTPOLL_H__
|
|
#define EVENTPOLL_H__
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "compiler.h"
|
|
#include "types.h"
|
|
#include "files.h"
|
|
#include "crtools.h"
|
|
|
|
extern int is_eventpoll_link(int lfd);
|
|
extern int dump_one_eventpoll(int lfd, u32 id, const struct fd_parms *p);
|
|
extern int collect_eventpoll(void);
|
|
extern void show_eventpoll(int fd, struct cr_options *o);
|
|
extern void show_eventpoll_tfd(int fd, struct cr_options *o);
|
|
|
|
#endif /* EVENTPOLL_H__ */
|