• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2015 Red Hat, Inc.
4  */
5 
6 #ifndef LAPI_NAMESPACES_CONSTANTS_H__
7 #define LAPI_NAMESPACES_CONSTANTS_H__
8 
9 #ifndef CLONE_NEWIPC
10 #  define CLONE_NEWIPC	0x08000000
11 #endif
12 #ifndef CLONE_NEWNS
13 #  define CLONE_NEWNS	0x00020000
14 #endif
15 #ifndef CLONE_NEWNET
16 #  define CLONE_NEWNET	0x40000000
17 #endif
18 #ifndef CLONE_NEWPID
19 #  define CLONE_NEWPID	0x20000000
20 #endif
21 #ifndef CLONE_NEWUSER
22 #  define CLONE_NEWUSER	0x10000000
23 #endif
24 #ifndef CLONE_NEWUTS
25 #  define CLONE_NEWUTS	0x04000000
26 #endif
27 #ifndef CLONE_NEWTIME
28 #  define CLONE_NEWTIME 0x00000080
29 #endif
30 
31 #endif /* LAPI_NAMESPACES_CONSTANTS_H__ */
32