mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 09:05:10 +00:00
No functional changes, just a code move. TODO: * need to write personal make_gen_id implementations for special files (device and pos is const for them effectively) * need to merge dump ops with restore ones (file_desc_ops) Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
17 lines
403 B
C
17 lines
403 B
C
#ifndef EVENTFD_H__
|
|
#define EVENTFD_H__
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "compiler.h"
|
|
#include "types.h"
|
|
#include "files.h"
|
|
#include "crtools.h"
|
|
|
|
extern int is_eventfd_link(int lfd);
|
|
extern int dump_eventfd(struct fd_parms *p, int lfd, const struct cr_fdset *set);
|
|
extern int collect_eventfd(void);
|
|
extern void show_eventfds(int fd, struct cr_options *o);
|
|
|
|
#endif /* EVENTFD_H__ */
|