]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/criu.h
tree-wide: fix includes to fix bionic builds
[mirror_lxc.git] / src / lxc / criu.h
CommitLineData
e29fe1dd
TA
1/*
2 * lxc: linux Container library
3 *
4 * Copyright © 2014-2015 Canonical Ltd.
5 *
6 * Authors:
7 * Tycho Andersen <tycho.andersen@canonical.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23#ifndef __LXC_CRIU_H
24#define __LXC_CRIU_H
25
26#include <stdbool.h>
27
28#include <lxc/lxccontainer.h>
29
d38dd64a
CB
30extern bool __criu_pre_dump(struct lxc_container *c, struct migrate_opts *opts);
31extern bool __criu_dump(struct lxc_container *c, struct migrate_opts *opts);
32extern bool __criu_restore(struct lxc_container *c, struct migrate_opts *opts);
33extern bool __criu_check_feature(uint64_t *features_to_check);
e29fe1dd
TA
34
35#endif