1/* Copyright (c) 2015 Red Hat, Inc.
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of version 2 the GNU General Public License as
5 * published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 ***********************************************************************/
15
16#ifndef __NAMESPACES_CONSTANTS_H__
17#define __NAMESPACES_CONSTANTS_H__
18
19#ifndef CLONE_NEWIPC
20#  define CLONE_NEWIPC	0x08000000
21#endif
22#ifndef CLONE_NEWNS
23#  define CLONE_NEWNS	0x00020000
24#endif
25#ifndef CLONE_NEWNET
26#  define CLONE_NEWNET	0x40000000
27#endif
28#ifndef CLONE_NEWPID
29#  define CLONE_NEWPID	0x20000000
30#endif
31#ifndef CLONE_NEWUSER
32#  define CLONE_NEWUSER	0x10000000
33#endif
34#ifndef CLONE_NEWUTS
35#  define CLONE_NEWUTS	0x04000000
36#endif
37
38#endif /* __NAMESPACES_CONSTANTS_H__ */
39