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>
17 lines
367 B
C
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__ */
|