| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_ALLOCATOR_ALLOCATOR_INTERCEPTION_MAC_H_ | 5 #ifndef BASE_ALLOCATOR_ALLOCATOR_INTERCEPTION_MAC_H_ |
| 6 #define BASE_ALLOCATOR_ALLOCATOR_INTERCEPTION_MAC_H_ | 6 #define BASE_ALLOCATOR_ALLOCATOR_INTERCEPTION_MAC_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include "base/base_export.h" | 10 #include "base/base_export.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 // Intercepts calls to default and purgeable malloc zones. Intercepts Core | 33 // Intercepts calls to default and purgeable malloc zones. Intercepts Core |
| 34 // Foundation and Objective-C allocations. | 34 // Foundation and Objective-C allocations. |
| 35 // Has no effect on the default malloc zone if the allocator shim already | 35 // Has no effect on the default malloc zone if the allocator shim already |
| 36 // performs that interception. | 36 // performs that interception. |
| 37 BASE_EXPORT void InterceptAllocationsMac(); | 37 BASE_EXPORT void InterceptAllocationsMac(); |
| 38 | 38 |
| 39 // Updates all malloc zones to use their original functions. | 39 // Updates all malloc zones to use their original functions. |
| 40 // Also calls ClearAllMallocZonesForTesting. | 40 // Also calls ClearAllMallocZonesForTesting. |
| 41 BASE_EXPORT void UninterceptMallocZonesForTesting(); | 41 BASE_EXPORT void UninterceptMallocZonesForTesting(); |
| 42 | 42 |
| 43 // Periodically checks for, and shims new malloc zones. Stops checking after 1 |
| 44 // minute. |
| 45 BASE_EXPORT void PeriodicallyShimNewMallocZones(); |
| 46 |
| 43 } // namespace allocator | 47 } // namespace allocator |
| 44 } // namespace base | 48 } // namespace base |
| 45 | 49 |
| 46 #endif // BASE_ALLOCATOR_ALLOCATOR_INTERCEPTION_MAC_H_ | 50 #endif // BASE_ALLOCATOR_ALLOCATOR_INTERCEPTION_MAC_H_ |
| OLD | NEW |