kernel: some boottime sanitychecks
[minix.git] / include / sys / sysctl.h
blob4706eae88c38d6be84cc197fd7a79195c6d8732d
1 #ifndef _SYS_SYSCTL_H
2 #define _SYS_SYSCTL_H
4 /*
5 * sysctl() is not supported. Warn non-libc programs including this header.
6 */
7 #ifndef _LIBC
8 #warning Including sysctl.h header. sysctl() is not supported in Minix.
9 #endif /* !_LIBC */
12 * Used by gmon.
14 struct clockinfo {
15 int hz; /* clock frequency */
16 int tick; /* micro-seconds per hz tick */
17 int tickadj; /* clock skew rate for adjtime() */
18 int stathz; /* statistics clock frequency */
19 int profhz; /* profiling clock frequency */
22 #endif /* _SYS_SYSCTL_H */