/* * This file contains the main routine for retrieval of the kernel information * page. */ #define _MINIX_SYSTEM #include #include "namespace.h" #include #include extern struct minix_kerninfo *_minix_kerninfo; /* * Get a pointer to the kernel information page. */ struct minix_kerninfo * get_minix_kerninfo(void) { assert(_minix_kerninfo != NULL); return _minix_kerninfo; }