param.h 726 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (C) 2006 Atmark Techno, Inc.
  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. #ifndef _ASM_MICROBLAZE_PARAM_H
  9. #define _ASM_MICROBLAZE_PARAM_H
  10. #ifdef __KERNEL__
  11. #define HZ CONFIG_HZ /* internal kernel timer frequency */
  12. #define USER_HZ 100 /* for user interfaces in "ticks" */
  13. #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */
  14. #endif /* __KERNEL__ */
  15. #ifndef HZ
  16. #define HZ 100
  17. #endif
  18. #define EXEC_PAGESIZE 4096
  19. #ifndef NOGROUP
  20. #define NOGROUP (-1)
  21. #endif
  22. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  23. #endif /* _ASM_MICROBLAZE_PARAM_H */