23 lines
319 B
C
23 lines
319 B
C
#ifndef _H8300_PARAM_H
|
|
#define _H8300_PARAM_H
|
|
|
|
|
|
#ifndef HZ
|
|
#define HZ 100
|
|
#endif
|
|
|
|
#ifdef __KERNEL__
|
|
#define USER_HZ HZ
|
|
#define CLOCKS_PER_SEC (USER_HZ)
|
|
#endif
|
|
|
|
#define EXEC_PAGESIZE 4096
|
|
|
|
#ifndef NOGROUP
|
|
#define NOGROUP (-1)
|
|
#endif
|
|
|
|
#define MAXHOSTNAMELEN 64 /* max length of hostname */
|
|
|
|
#endif /* _H8300_PARAM_H */
|