criu/include/eventfd.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

17 lines
367 B
C

#ifndef __CR_EVENTFD_H__
#define __CR_EVENTFD_H__
#include <sys/types.h>
#include <unistd.h>
#include "compiler.h"
#include "asm/types.h"
#include "files.h"
#include "crtools.h"
extern int is_eventfd_link(int lfd);
extern const struct fdtype_ops eventfd_dump_ops;
extern int collect_eventfd(void);
extern void show_eventfds(int fd);
#endif /* __CR_EVENTFD_H__ */