mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
11 lines
200 B
C++
11 lines
200 B
C++
|
#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);
|
||
|
|
||
|
}
|