36dc99a323
address protection bits as well as the wiring flags for an arbitrary address in a team's address space. Will be used in the debugger for the purposes of the memory inspector/editor, in order to determine whether it can in fact allow editing for the currently inspected address range. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42129 a95241bf-73f2-0310-859d-f6bbb57e9c96
22 lines
391 B
C
22 lines
391 B
C
/*
|
|
* Copyright 2011, Rene Gollent, rene@gollent.com.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _LIBROOT_MEMORY_PRIVATE_H
|
|
#define _LIBROOT_MEMORY_PRIVATE_H
|
|
|
|
#include <OS.h>
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
status_t get_memory_properties(team_id teamID, const void* address,
|
|
uint32* _protected, uint32* _lock);
|
|
|
|
__END_DECLS
|
|
|
|
|
|
#endif // _LIBROOT_MEMORY_PRIVATE_H
|