2012-11-15 12:06:41 +01:00
|
|
|
#include "kernel/kernel.h"
|
2012-07-18 18:53:20 +02:00
|
|
|
|
|
|
|
/* This is the user-visible struct that has pointers to other bits of data. */
|
|
|
|
struct minix_kerninfo minix_kerninfo;
|
|
|
|
|
|
|
|
/* Kernel information structures. */
|
|
|
|
struct kinfo kinfo; /* kernel information for users */
|
|
|
|
struct machine machine; /* machine information for users */
|
|
|
|
struct kmessages kmessages; /* diagnostic messages in kernel */
|
|
|
|
struct loadinfo loadinfo; /* status of load average */
|
|
|
|
|