ClickHouse/src/Common/remapExecutable.h

13 lines
209 B
C++
Raw Normal View History

2020-10-10 18:37:02 +00:00
#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();
}