logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

prctl.h (1170B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _ASM_X86_PRCTL_H
  3. #define _ASM_X86_PRCTL_H
  4. #define ARCH_SET_GS 0x1001
  5. #define ARCH_SET_FS 0x1002
  6. #define ARCH_GET_FS 0x1003
  7. #define ARCH_GET_GS 0x1004
  8. #define ARCH_GET_CPUID 0x1011
  9. #define ARCH_SET_CPUID 0x1012
  10. #define ARCH_GET_XCOMP_SUPP 0x1021
  11. #define ARCH_GET_XCOMP_PERM 0x1022
  12. #define ARCH_REQ_XCOMP_PERM 0x1023
  13. #define ARCH_GET_XCOMP_GUEST_PERM 0x1024
  14. #define ARCH_REQ_XCOMP_GUEST_PERM 0x1025
  15. #define ARCH_XCOMP_TILECFG 17
  16. #define ARCH_XCOMP_TILEDATA 18
  17. #define ARCH_MAP_VDSO_X32 0x2001
  18. #define ARCH_MAP_VDSO_32 0x2002
  19. #define ARCH_MAP_VDSO_64 0x2003
  20. /* Don't use 0x3001-0x3004 because of old glibcs */
  21. #define ARCH_GET_UNTAG_MASK 0x4001
  22. #define ARCH_ENABLE_TAGGED_ADDR 0x4002
  23. #define ARCH_GET_MAX_TAG_BITS 0x4003
  24. #define ARCH_FORCE_TAGGED_SVA 0x4004
  25. #define ARCH_SHSTK_ENABLE 0x5001
  26. #define ARCH_SHSTK_DISABLE 0x5002
  27. #define ARCH_SHSTK_LOCK 0x5003
  28. #define ARCH_SHSTK_UNLOCK 0x5004
  29. #define ARCH_SHSTK_STATUS 0x5005
  30. /* ARCH_SHSTK_ features bits */
  31. #define ARCH_SHSTK_SHSTK (1ULL << 0)
  32. #define ARCH_SHSTK_WRSS (1ULL << 1)
  33. #endif /* _ASM_X86_PRCTL_H */