]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/criu.h
lxc: switch to SPDX
[mirror_lxc.git] / src / lxc / criu.h
CommitLineData
cc73685d
CB
1/* SPDX-License-Identifier: LGPL-2.1+ */
2
e29fe1dd
TA
3#ifndef __LXC_CRIU_H
4#define __LXC_CRIU_H
5
6#include <stdbool.h>
7
8#include <lxc/lxccontainer.h>
9
d38dd64a
CB
10extern bool __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts);
11extern bool __criu_dump(struct lxc_container *c, struct migrate_opts *opts);
12extern bool __criu_restore(struct lxc_container *c, struct migrate_opts *opts);
13extern bool __criu_check_feature(uint64_t *features_to_check);
e29fe1dd
TA
14
15#endif