param.h 714 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _ASM_PPC64_PARAM_H
  2. #define _ASM_PPC64_PARAM_H
  3. /*
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. */
  9. #ifdef __KERNEL__
  10. # define HZ 1000 /* Internal kernel timer frequency */
  11. # define USER_HZ 100 /* .. some user interfaces are in "ticks" */
  12. # define CLOCKS_PER_SEC (USER_HZ) /* like times() */
  13. #endif
  14. #ifndef HZ
  15. #define HZ 100
  16. #endif
  17. #define EXEC_PAGESIZE 4096
  18. #ifndef NOGROUP
  19. #define NOGROUP (-1)
  20. #endif
  21. #define MAXHOSTNAMELEN 64 /* max length of hostname */
  22. #endif /* _ASM_PPC64_PARAM_H */