mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
13 lines
209 B
C++
13 lines
209 B
C++
#pragma once
|
|
|
|
#include <cstdlib>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// This function tries to reallocate the code of the running program in a more efficient way.
|
|
/// @return size of remapped area.
|
|
size_t remapExecutable();
|
|
|
|
}
|