aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/malloc_mmap_guard.cpp
blob: 187a70a1087173bdfaf8ba5de1569266695554a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "malloc_mmap_guard.h"
#include <vespa/vespalib/util/size_literals.h>
#ifdef __linux__
#include <malloc.h>
#endif
#include <limits>
#include <cassert>

namespace vespalib {

MallocMmapGuard::MallocMmapGuard(size_t mmapLimit) :
    _threadId(std::this_thread::get_id())
{
#ifdef __linux__
    int limit = mmapLimit <= std::numeric_limits<int>::max() ? mmapLimit : std::numeric_limits<int>::max();
    mallopt(M_MMAP_THRESHOLD, limit);
#else
    (void) mmapLimit;
#endif
}

MallocMmapGuard::~MallocMmapGuard()
{
    assert(_threadId == std::this_thread::get_id());
#ifdef __linux__
    mallopt(M_MMAP_THRESHOLD, 1_Gi);
#endif
}

}