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. */
|
2014-08-21 13:35:45 +02:00
|
|
|
struct minix_kerninfo minix_kerninfo __section(".usermapped");
|
2012-07-18 18:53:20 +02:00
|
|
|
|
|
|
|
/* Kernel information structures. */
|
2014-08-21 13:35:45 +02:00
|
|
|
struct kinfo kinfo __section(".usermapped"); /* kernel information for users */
|
|
|
|
struct machine machine __section(".usermapped"); /* machine information for users */
|
|
|
|
struct kmessages kmessages __section(".usermapped"); /* diagnostic messages in kernel */
|
|
|
|
struct loadinfo loadinfo __section(".usermapped"); /* status of load average */
|
2012-07-18 18:53:20 +02:00
|
|
|
|