param.h 635 B

12345678910111213141516171819202122232425262728293031
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * include/asm-xtensa/param.h
  4. *
  5. * This file is subject to the terms and conditions of the GNU General Public
  6. * License. See the file "COPYING" in the main directory of this archive
  7. * for more details.
  8. *
  9. * Copyright (C) 2001 - 2005 Tensilica Inc.
  10. */
  11. #ifndef _UAPI_XTENSA_PARAM_H
  12. #define _UAPI_XTENSA_PARAM_H
  13. #ifndef __KERNEL__
  14. # define HZ 100
  15. #endif
  16. #define EXEC_PAGESIZE 4096
  17. #ifndef NGROUPS
  18. #define NGROUPS 32
  19. #endif
  20. #ifndef NOGROUP
  21. #define NOGROUP (-1)
  22. #endif
  23. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  24. #endif /* _UAPI_XTENSA_PARAM_H */