malloc_wrapper.h 820 B

12345678910111213141516171819202122
  1. // Copyright 2015 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef BASE_TEST_MALLOC_WRAPPER_H_
  5. #define BASE_TEST_MALLOC_WRAPPER_H_
  6. #include <stddef.h>
  7. // BASE_EXPORT depends on COMPONENT_BUILD.
  8. // This will always be a separate shared library, so don't use BASE_EXPORT here.
  9. #if defined(WIN32)
  10. #define MALLOC_WRAPPER_EXPORT __declspec(dllexport)
  11. #else
  12. #define MALLOC_WRAPPER_EXPORT __attribute__((visibility("default")))
  13. #endif // defined(WIN32)
  14. // Calls malloc directly. Defined as a C function so that the function can be
  15. // easily referenced by dlsym() without complications from C++ name mangling.
  16. extern "C" MALLOC_WRAPPER_EXPORT void* MallocWrapper(size_t size);
  17. #endif // BASE_TEST_MALLOC_WRAPPER_H_