1 /* 2 * Copyright 2011, Rene Gollent, rene@gollent.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _LIBROOT_MEMORY_PRIVATE_H 6 #define _LIBROOT_MEMORY_PRIVATE_H 7 8 #include <OS.h> 9 10 #include <sys/cdefs.h> 11 12 13 __BEGIN_DECLS 14 15 status_t get_memory_properties(team_id teamID, const void* address, 16 uint32* _protected, uint32* _lock); 17 18 __END_DECLS 19 20 21 #endif // _LIBROOT_MEMORY_PRIVATE_H 22