ClickHouse/src/Common/getMappedArea.h

11 lines
200 B
C++
Raw Normal View History

2020-09-17 12:53:52 +00:00
#include <utility>
namespace DB
{
/// Find the address and size of the mapped memory region pointed by ptr.
/// Throw exception if not found.
std::pair<void *, size_t> getMappedArea(void * ptr);
}