#ifndef	EXEC_VMEMORY_H
#define	EXEC_VMEMORY_H
/*
**	$Filename: exec/vmemory.h $
**	$Release: X.VM $
**	$Revision: XX.XX $
**	$Date: 92/XX/XX $
**
**	Definitions and structures used by the VM memory allocation system
**
**	(C) Copyright 1992 Laurence Vanhelsuwé
**	    All Rights Reserved
*/

#ifndef EXEC_NODES_H
#include "exec/nodes.h"
#endif /* EXEC_NODES_H */

/*----- Memory Requirement Types ---------------------------*/
/*----- See the AllocMem() documentation for details--------*/

#define	MEMF_VM		(1L<<31)	/* Ask for VIRTUAL MEMORY */

#define VMEM_PAGESIZE	32768
#define VMEM_PAGEMASK	(VMEM_PAGESIZE-1)

#endif	/* EXEC_VMEMORY_H */
