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