minix/servers/vm/arch/i386/arch_vmproc.h
Arun Thomas 436d6012a3 Convert drivers/ and servers/ over to bsdmake
-Move libdriver to lib/
-Install all boot image services on filesystem to aid restartability
2010-03-22 21:25:22 +00:00

22 lines
596 B
C

#include <minix/config.h>
#include <minix/const.h>
#include <minix/type.h>
#include <minix/com.h>
#include <minix/ipc.h>
#include <minix/safecopies.h>
#include <timers.h>
struct vm_arch {
struct mem_map vm_seg[NR_LOCAL_SEGS]; /* text, data, stack */
/* vm_data_top points to top of data address space, as visible
* from user-space, in bytes.
* for segments processes this is the same
* as the top of vm_seg[S] segment. for paged processes this
* can be much higher (so more memory is available above the
* stack).
*/
u32_t vm_data_top; /* virtual process space in bytes */
};