aboutsummaryrefslogtreecommitdiff
path: root/libsanitizer/sanitizer_common/sanitizer_mallinfo.h
blob: 4e58c02df835190d9211ab5282287ef5b58fd33f (plain)
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
32
33
34
35
36
37
38
//===-- sanitizer_mallinfo.h ----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file is a part of Sanitizer common code.
//
// Definition for mallinfo on different platforms.
//===----------------------------------------------------------------------===//

#ifndef SANITIZER_MALLINFO_H
#define SANITIZER_MALLINFO_H

#include "sanitizer_internal_defs.h"
#include "sanitizer_platform.h"

namespace __sanitizer {

#if SANITIZER_ANDROID

struct __sanitizer_struct_mallinfo {
  uptr v[10];
};

#elif SANITIZER_LINUX || SANITIZER_APPLE || SANITIZER_FUCHSIA

struct __sanitizer_struct_mallinfo {
  int v[10];
};

#endif

}  // namespace __sanitizer

#endif  // SANITIZER_MALLINFO_H