//===-- wrappers_c.h --------------------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// #ifndef SCUDO_WRAPPERS_C_H_ #define SCUDO_WRAPPERS_C_H_ #include "platform.h" #include "stats.h" // Bionic's struct mallinfo consists of size_t (mallinfo(3) uses int). #if SCUDO_ANDROID typedef size_t __scudo_mallinfo_data_t; #else __scudo_mallinfo_data_t; #endif struct __scudo_mallinfo { … }; struct __scudo_mallinfo2 { … }; // Android sometimes includes malloc.h no matter what, which yields to // conflicting return types for mallinfo() if we use our own structure. So if // struct mallinfo is declared (#define courtesy of malloc.h), use it directly. #if STRUCT_MALLINFO_DECLARED #define SCUDO_MALLINFO … #else #define SCUDO_MALLINFO … #endif #if !SCUDO_ANDROID || !_BIONIC extern "C" void malloc_postinit(); extern HIDDEN scudo::Allocator<scudo::Config, malloc_postinit> Allocator; #endif #endif // SCUDO_WRAPPERS_C_H_