mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 00:58:31 +00:00
We have generic do_pb_show() call and tons of show_foo routines, that just call one with proper args. Compact the code by putting the args into array and calling the do_pb_show() in one place. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
17 lines
404 B
C
17 lines
404 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 struct collect_image_info epoll_tfd_cinfo;
|
|
extern struct collect_image_info epoll_cinfo;
|
|
|
|
#endif /* __CR_EVENTPOLL_H__ */
|