1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/*
* Copyright (c) Contributors to the Apptainer project, established as
* Apptainer a Series of LF Projects LLC.
* For website terms of use, trademark policy, privacy policy and other
* project policies see https://lfprojects.org/policies
* Copyright (c) 2017-2019, SyLabs, Inc. All rights reserved.
* Copyright (c) 2017, SingularityWare, LLC. All rights reserved.
*
* This file is part of the Apptainer Linux container project. It is subject to the license
* terms in the LICENSE.md file found in the top-level directory of this distribution and
* at https://github.com/apptainer/apptainer/blob/main/LICENSE.md. No part
* of Apptainer, including this file, may be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE.md file.
*
*/
#ifndef __SETNS_H_
#define __SETNS_H_
#if defined(__linux__) && !defined(__NR_setns)
# if defined(__x86_64__)
# define __NR_setns 308
# elif defined(__i386__)
# define __NR_setns 346
# elif defined(__alpha__)
# define __NR_setns 501
# elif defined(__arm__)
# define __NR_setns 375
# elif defined(__aarch64__)
# define __NR_setns 375
# elif defined(__ia64__)
# define __NR_setns 1330
# elif defined(__sparc__)
# define __NR_setns 337
# elif defined(__powerpc__)
# define __NR_setns 350
# elif defined(__s390__) || defined(__s390x__)
# define __NR_setns 339
# elif defined(__riscv)
# define __NR_setns 268
# elif defined(__mips__)
# if _MIPS_SIM == _ABIO32
# define __NR_setns 4344
# elif _MIPS_SIM == _ABI64
# define __NR_setns 5303
# elif _MIPS_SIM == _ABIN32
# define __NR_setns 6308
# endif
# elif defined(__m68k__)
# define __NR_setns 344
# elif defined(__hppa__)
# define __NR_setns 328
# elif defined(__sh__) && (!defined(__SH5__) || __SH5__ == 32)
# define __NR_setns 364
# elif defined(__sh__) && defined(__SH5__) && __SH5__ == 64
# define __NR_setns 375
# elif defined(__bfin__)
# define __NR_setns 379
# else
# error Please determine the syscall number of setns on your architecture
# endif
#endif
#endif /* __SETNS_H_ */
|