ClickHouse/src/Common/remapExecutable.h
2021-11-04 00:19:00 +03:00

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();
}