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 11 #ifndef _UAPI_XTENSA_PARAM_H 12 #define _UAPI_XTENSA_PARAM_H 13 14 #ifndef __KERNEL__ 15 # define HZ 100 16 #endif 17 18 #define EXEC_PAGESIZE 4096 19 20 #ifndef NGROUPS 21 #define NGROUPS 32 22 #endif 23 24 #ifndef NOGROUP 25 #define NOGROUP (-1) 26 #endif 27 28 #define MAXHOSTNAMELEN 64 /* max length of hostname */ 29 30 #endif /* _UAPI_XTENSA_PARAM_H */ 31