YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/util/malloc.cc
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
#include "yb/util/malloc.h"
33
#include <glog/logging.h>
34
35
#if defined(__linux__)
36
#include <malloc.h>
37
#else
38
#include <malloc/malloc.h>
39
#endif // defined(__linux__)
40
41
namespace yb {
42
43
6
size_t malloc_usable_size(const void* obj) {
44
#if defined(__linux__)
45
  return ::malloc_usable_size(const_cast<void*>(obj));
46
#else
47
6
  return malloc_size(obj);
48
6
#endif // defined(__linux__)
49
6
}
50
51
380M
char* malloc_with_check(size_t size) {
52
380M
  auto data = static_cast<char*>(malloc(size));
53
380M
  CHECK
(data != nullptr) << "failed to allocate " << size << " bytes"1.25M
;
54
380M
  return data;
55
380M
}
56
57
} // namespace yb