0fae873352
Cleaned up some header style violations, making sure there are two blank lines after the header guards. This fixes the posix header part of #2191. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39288 a95241bf-73f2-0310-859d-f6bbb57e9c96
37 lines
866 B
C
37 lines
866 B
C
/*
|
|
* Copyright 2010 Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef MALLOC_DEBUG_H
|
|
#define MALLOC_DEBUG_H
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t heap_debug_start_wall_checking(int msInterval);
|
|
status_t heap_debug_stop_wall_checking();
|
|
|
|
void heap_debug_set_memory_reuse(bool enabled);
|
|
void heap_debug_set_paranoid_validation(bool enabled);
|
|
void heap_debug_set_debugger_calls(bool enabled);
|
|
void heap_debug_validate_heaps();
|
|
void heap_debug_validate_walls();
|
|
|
|
void heap_debug_dump_allocations(bool statsOnly, thread_id thread);
|
|
void heap_debug_dump_heaps(bool dumpAreas, bool dumpBins);
|
|
|
|
void *heap_debug_malloc_with_guard_page(size_t size);
|
|
|
|
status_t heap_debug_get_allocation_info(void *address, size_t *size,
|
|
thread_id *thread);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MALLOC_DEBUG_H */
|