mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 20:42:04 +00:00
14 lines
233 B
C++
14 lines
233 B
C++
#pragma once
|
|
#include <utility>
|
|
#include <cstddef>
|
|
|
|
|
|
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);
|
|
|
|
}
|