2002-07-09 16:24:59 +04:00
|
|
|
/*
|
2004-11-18 20:46:39 +03:00
|
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2002-07-09 16:24:59 +04:00
|
|
|
#ifndef _KERNEL_VM_STORE_ANONYMOUS_H
|
|
|
|
#define _KERNEL_VM_STORE_ANONYMOUS_H
|
|
|
|
|
2004-11-18 20:46:39 +03:00
|
|
|
#include <vm_types.h>
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2004-11-18 20:46:39 +03:00
|
|
|
vm_store *vm_store_create_anonymous_noswap(bool stack, int32 numGuardPages);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2004-11-18 20:46:39 +03:00
|
|
|
#endif /* _KERNEL_VM_STORE_ANONYMOUS_H */
|