introduces the following relevant changes:
* VMCache:
- Renamed vm_cache to VMCache, merged it with vm_store and made it a
C++ class with virtual methods (replacing the store operations).
Turned the different store implementations into subclasses.
- Introduced MergeStore() callback, changed semantics of Commit().
- Changed locking and referencing semantics. A reference can only be
acquired/released with the cache locked. An unreferenced cache is
deleted and a mergeable cache merged when it is unlocked. This
removes the "busy" state of a cache and simplifies the page fault
code.
* Added VMAnonymousCache, which will implement swap support (work by
Zhao Shuai). It is not integrated and used yet, though.
* Enabled the mutex/recursive lock holder asserts.
* Fixed DoublyLinkedList::Swap().
* Generalized the low memory handler to a low resource handler. And made
semaphores and reserved memory handled resources. Made
vm_try_resource_memory() optionally wait (with timeout), and used that
feature to reserve memory for areas.
...
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26572 a95241bf-73f2-0310-859d-f6bbb57e9c96
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
/*
|
|
* Copyright 2008, Ingo Weinhold, [email protected].
|
|
* Copyright 2005-2007, Axel Dörfler, [email protected]. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_LOW_RESOURCE_MANAGER_H
|
|
#define _KERNEL_LOW_RESOURCE_MANAGER_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
/* warning levels for low resource handlers */
|
|
enum {
|
|
B_NO_LOW_RESOURCE = 0,
|
|
B_LOW_RESOURCE_NOTE,
|
|
B_LOW_RESOURCE_WARNING,
|
|
B_LOW_RESOURCE_CRITICAL,
|
|
};
|
|
|
|
enum {
|
|
B_KERNEL_RESOURCE_PAGES = 0x01, /* physical pages */
|
|
B_KERNEL_RESOURCE_MEMORY = 0x02, /* reservable memory */
|
|
B_KERNEL_RESOURCE_SEMAPHORES = 0x04, /* semaphores */
|
|
|
|
B_ALL_KERNEL_RESOURCES = B_KERNEL_RESOURCE_PAGES
|
|
| B_KERNEL_RESOURCE_MEMORY
|
|
| B_KERNEL_RESOURCE_SEMAPHORES
|
|
};
|
|
|
|
typedef void (*low_resource_func)(void *data, uint32 resources, int32 level);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t low_resource_manager_init(void);
|
|
status_t low_resource_manager_init_post_thread(void);
|
|
int32 low_resource_state(uint32 resources);
|
|
void low_resource(uint32 resource, uint64 requirements, uint32 flags,
|
|
uint32 timeout);
|
|
|
|
// these calls might get public some day
|
|
status_t register_low_resource_handler(low_resource_func function, void *data,
|
|
uint32 resources, int32 priority);
|
|
status_t unregister_low_resource_handler(low_resource_func function,
|
|
void *data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_LOW_RESOURCE_MANAGER_H */
|