]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/criu.h
Merge pull request #4236 from mihalicyn/github_check_fixes
[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 "config.h"
7
8 #include <stdbool.h>
9
10 #include "lxc.h"
11
12 __hidden extern bool __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts);
13 __hidden extern bool __criu_dump(struct lxc_container *c, struct migrate_opts *opts);
14 __hidden extern bool __criu_restore(struct lxc_container *c, struct migrate_opts *opts);
15 __hidden extern bool __criu_check_feature(uint64_t *features_to_check);
16
17 #endif