mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-20 16:51:37 +00:00
Since *all* of them just call do_dump_gen_file with proper ops, just call one directly. Compacts the code. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
18 lines
420 B
C
18 lines
420 B
C
#ifndef __CR_EVENTPOLL_H__
|
|
#define __CR_EVENTPOLL_H__
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "compiler.h"
|
|
#include "asm/types.h"
|
|
#include "files.h"
|
|
#include "crtools.h"
|
|
|
|
extern int is_eventpoll_link(int lfd);
|
|
extern const struct fdtype_ops eventpoll_dump_ops;
|
|
extern int collect_eventpoll(void);
|
|
extern void show_eventpoll(int fd);
|
|
extern void show_eventpoll_tfd(int fd);
|
|
|
|
#endif /* __CR_EVENTPOLL_H__ */
|