OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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 | |
5 #include "base/allocator/allocator_extension_thunks.h" | |
6 | |
7 #include <cstddef> // for NULL | |
8 | |
9 namespace base { | |
10 namespace allocator { | |
11 namespace thunks { | |
12 | |
13 // This slightly odd translation unit exists because of the peculularity of how | |
willchan no longer on Chromium
2012/04/27 19:51:51
peculiarity
ah, this makes more sense. a descript
| |
14 // allocator_unittests works on windows. That target has to perform | |
15 // tcmalloc-specific initialization on windows, but it cannot depend on base | |
16 // otherwise. This target sits in the middle - both libbase and | |
17 // allocator_unittests can depend on it. | |
18 // This file can't depend on anything else in base, including logging. | |
19 | |
20 static GetStatsFunction* g_get_stats_function = NULL; | |
21 static ReleaseFreeMemoryFunction* g_release_free_memory_function = NULL; | |
22 | |
23 void SetGetStatsFunction(GetStatsFunction* get_stats_function) { | |
24 g_get_stats_function = get_stats_function; | |
25 } | |
26 | |
27 GetStatsFunction* GetGetStatsFunction() { | |
28 return g_get_stats_function; | |
29 } | |
30 | |
31 void SetReleaseFreeMemoryFunction( | |
32 ReleaseFreeMemoryFunction* release_free_memory_function) { | |
33 g_release_free_memory_function = release_free_memory_function; | |
34 } | |
35 | |
36 ReleaseFreeMemoryFunction* GetReleaseFreeMemoryFunction() { | |
37 return g_release_free_memory_function; | |
38 } | |
39 | |
40 } // namespace thunks | |
41 } // namespace allocator | |
42 } // namespace base | |
OLD | NEW |