Subversion Repositories SvarDOS

Rev

Rev 616 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 616 Rev 634
1
/*!\file sys/param.h
1
/*!\file sys/param.h
2
 *
2
 *
3
 * Miscellaneous defines.
3
 * Miscellaneous defines.
4
 */
4
 */
5
 
5
 
6
/* sys/param.h (wattcp) */
6
/* sys/param.h (wattcp) */
7
 
7
 
8
#ifndef __SYS_PARAM_H
8
#ifndef __SYS_PARAM_H
9
#define __SYS_PARAM_H
9
#define __SYS_PARAM_H
10
 
10
 
11
#ifndef PAGE_SIZE
11
#ifndef PAGE_SIZE
12
#define PAGE_SIZE      0x1000
12
#define PAGE_SIZE      0x1000
13
#endif
13
#endif
14
 
14
 
15
#ifndef HZ
15
#ifndef HZ
16
#define HZ             100
16
#define HZ             100
17
#endif
17
#endif
18
 
18
 
19
#ifndef MAXNAMLEN
19
#ifndef MAXNAMLEN
20
#define MAXNAMLEN      260
20
#define MAXNAMLEN      260
21
#endif
21
#endif
22
 
22
 
23
#ifndef MAXPATHLEN
23
#ifndef MAXPATHLEN
24
#define MAXPATHLEN     260
24
#define MAXPATHLEN     260
25
#endif
25
#endif
26
 
26
 
27
#ifndef MAXHOSTNAMELEN
27
#ifndef MAXHOSTNAMELEN
28
#define MAXHOSTNAMELEN 256
28
#define MAXHOSTNAMELEN 256
29
#endif
29
#endif
30
 
30
 
31
#ifndef __SYS_SWAP_BYTES_H
31
#ifndef __SYS_SWAP_BYTES_H
32
#include <sys/swap.h>
32
#include <sys/swap.h>
33
#endif
33
#endif
34
 
34
 
35
#endif
35
#endif
36
 
36