Subversion Repositories SvarDOS

Rev

Rev 616 | Details | Compare with Previous | Last modification | View Log | RSS feed

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