criu/include/eventpoll.h
Pavel Emelyanov d020ebb36d files: Compact the code by removing per-file dump helpers
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>
2013-06-14 00:11:08 +04:00

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__ */