blob: 13df8d5cb892c1cf9400b1cc0c2dccb7bc7c0876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $NetBSD: limits.h,v 1.5 2000/01/23 21:01:57 soda Exp $ */
/* $OpenBSD: limits.h,v 1.1.1.1 1996/06/24 09:07:17 pefo Exp $ */
/* NetBSD: limits.h,v 1.8 1995/03/28 18:19:16 jtc Exp */
#ifndef _MACHINE_LIMITS_H_
#define _MACHINE_LIMITS_H_
#include <mips/limits.h>
#ifdef _KERNEL
#define CLK_TCK 100 /* ticks per second */
#endif
#endif /* _MACHINE_LIMITS_H_ */
|