2002-07-09 12:24:59 +00:00
|
|
|
/*
|
2004-10-19 23:19:10 +00:00
|
|
|
** Copyright 2002-2004, The Haiku Team. All rights reserved.
|
|
|
|
** Distributed under the terms of the Haiku License.
|
|
|
|
**
|
2002-07-09 12:24:59 +00:00
|
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
** Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_VM_PAGE_H
|
|
|
|
#define _KERNEL_VM_PAGE_H
|
|
|
|
|
2004-09-06 21:49:38 +00:00
|
|
|
|
2002-07-09 12:24:59 +00:00
|
|
|
#include <vm.h>
|
|
|
|
|
2004-09-06 21:49:38 +00:00
|
|
|
|
2003-05-03 16:03:26 +00:00
|
|
|
struct kernel_args;
|
|
|
|
|
|
|
|
|
2004-09-06 21:49:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-10-19 23:19:10 +00:00
|
|
|
status_t vm_page_init(struct kernel_args *args);
|
|
|
|
status_t vm_page_init_post_area(struct kernel_args *args);
|
|
|
|
status_t vm_page_init_post_thread(struct kernel_args *args);
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2004-10-19 23:19:10 +00:00
|
|
|
status_t vm_mark_page_inuse(addr_t page);
|
|
|
|
status_t vm_mark_page_range_inuse(addr_t startPage, addr_t length);
|
|
|
|
status_t vm_page_set_state(vm_page *page, int state);
|
2002-07-09 12:24:59 +00:00
|
|
|
|
|
|
|
vm_page *vm_page_allocate_page(int state);
|
2004-10-19 23:19:10 +00:00
|
|
|
vm_page *vm_page_allocate_page_run(int state, addr_t length);
|
2004-09-06 21:49:38 +00:00
|
|
|
vm_page *vm_page_allocate_specific_page(addr_t page_num, int state);
|
|
|
|
vm_page *vm_lookup_page(addr_t page_num);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2002-07-09 12:24:59 +00:00
|
|
|
|
2003-05-03 16:03:26 +00:00
|
|
|
#endif /* _KERNEL_VM_PAGE_H */
|