The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/asm-alpha/param.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #ifndef _ASM_ALPHA_PARAM_H
    2 #define _ASM_ALPHA_PARAM_H
    3 
    4 /* ??? Gross.  I don't want to parameterize this, and supposedly the
    5    hardware ignores reprogramming.  We also need userland buy-in to the 
    6    change in HZ, since this is visible in the wait4 resources etc.  */
    7 
    8 #include <linux/config.h>
    9 
   10 #ifndef HZ
   11 # ifndef CONFIG_ALPHA_RAWHIDE
   12 #  define HZ    1024
   13 # else
   14 #  define HZ    1200
   15 # endif
   16 #endif
   17 
   18 #define EXEC_PAGESIZE   8192
   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 #ifdef __KERNEL__
   31 # define CLOCKS_PER_SEC HZ      /* frequency at which times() counts */
   32 #endif
   33 
   34 #endif /* _ASM_ALPHA_PARAM_H */

Cache object: ae87e45219ae4f273f63eb0d18622f38


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.