]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/criu.h
utils: use SYSTRACE() when logging stdio permission fixup failures
[mirror_lxc.git] / src / lxc / criu.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #ifndef __LXC_CRIU_H
4 #define __LXC_CRIU_H
5
6 #include <stdbool.h>
7
8 #include <lxc/lxccontainer.h>
9
10 __hidden extern bool __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts);
11 __hidden extern bool __criu_dump(struct lxc_container *c, struct migrate_opts *opts);
12 __hidden extern bool __criu_restore(struct lxc_container *c, struct migrate_opts *opts);
13 __hidden extern bool __criu_check_feature(uint64_t *features_to_check);
14
15 #endif