mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-29 05:18:00 +00:00
* The following files goes into the directory arch/x86/include/asm unmodified: - include/atomic.h, - include/linkage.h, - include/memcpy_64.h, - include/types.h, - include/bitops.h, - pie/parasite-head-x86-64.S, - include/processor-flags.h, - include/syscall-x86-64.def. * Changed include directives in the source files that include the headers listed above. * Modified build scripts to reflect the source moves. Signed-off-by: Alexander Kartashov <alekskartashov@parallels.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
19 lines
499 B
C
19 lines
499 B
C
#ifndef __CR_INOTIFY_H__
|
|
#define __CR_INOTIFY_H__
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "compiler.h"
|
|
#include "asm/types.h"
|
|
#include "files.h"
|
|
#include "crtools.h"
|
|
|
|
extern int is_inotify_link(int lfd);
|
|
extern int dump_inotify(struct fd_parms *p, int lfd, const struct cr_fdset *set);
|
|
extern int collect_inotify(void);
|
|
extern void show_inotify_wd(int fd_inotify_wd, struct cr_options *o);
|
|
extern void show_inotify(int fd_inotify, struct cr_options *o);
|
|
|
|
#endif /* __CR_INOTIFY_H__ */
|