blob: 1c07e68e55a7d3b80551557403755decaac94170 (
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
32
33
34
35
36
37
38
39
40
41
42
|
//===-- 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];
};
struct __sanitizer_struct_mallinfo2 {
uptr v[10];
};
#endif
} // namespace __sanitizer
#endif // SANITIZER_MALLINFO_H
|