Search
lxdream.org :: lxdream/test/include/sys/param.h
lxdream 0.9.1
released Jun 29
Download Now
filename test/include/sys/param.h
changeset 185:6755a04c447f
author nkeynes
date Fri Feb 08 00:06:56 2008 +0000 (16 years ago)
permissions -rw-r--r--
last change Fix LDS/STS to FPUL/FPSCR to check the FPU disabled bit. Fixes
the linux 2.4.0-test8 kernel boot
(this wasn't exactly very well documented in the original manual)
file annotate diff log raw
nkeynes@185
     1
/* This is a dummy <sys/param.h> file, not customized for any
nkeynes@185
     2
   particular system.  If there is a param.h in libc/sys/SYSDIR/sys,
nkeynes@185
     3
   it will override this one.  */
nkeynes@185
     4
nkeynes@185
     5
#ifndef _SYS_PARAM_H
nkeynes@185
     6
# define _SYS_PARAM_H
nkeynes@185
     7
nkeynes@185
     8
# define HZ (60)
nkeynes@185
     9
# define NOFILE	(60)
nkeynes@185
    10
# define PATHSIZE (1024)
nkeynes@185
    11
nkeynes@185
    12
#ifdef __i386__
nkeynes@185
    13
#define BIG_ENDIAN 4321
nkeynes@185
    14
#define LITTLE_ENDIAN 1234
nkeynes@185
    15
#define BYTE_ORDER LITTLE_ENDIAN
nkeynes@185
    16
#endif
nkeynes@185
    17
nkeynes@185
    18
#endif
.