aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Common/remapExecutable.h
blob: b5af9c82f847027d3715c445da940f716afe9386 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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();

}