param.h 572 B

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