You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
328 B
21 lines
328 B
20 years ago
|
#ifndef _H8300_PARAM_H
|
||
|
#define _H8300_PARAM_H
|
||
|
|
||
|
#ifdef __KERNEL__
|
||
17 years ago
|
#define HZ CONFIG_HZ
|
||
20 years ago
|
#define USER_HZ HZ
|
||
|
#define CLOCKS_PER_SEC (USER_HZ)
|
||
17 years ago
|
#else
|
||
|
#define HZ 100
|
||
20 years ago
|
#endif
|
||
|
|
||
|
#define EXEC_PAGESIZE 4096
|
||
|
|
||
|
#ifndef NOGROUP
|
||
|
#define NOGROUP (-1)
|
||
|
#endif
|
||
|
|
||
|
#define MAXHOSTNAMELEN 64 /* max length of hostname */
|
||
|
|
||
|
#endif /* _H8300_PARAM_H */
|