OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // This is a glue file, which allows third party code to call into our profiler | 5 // This is a glue file, which allows third party code to call into our profiler |
6 // without having to include most any functions from base. | 6 // without having to include most any functions from base. |
7 | 7 |
8 | |
9 #ifndef BASE_PROFILER_ALTERNATE_TIMER_H_ | 8 #ifndef BASE_PROFILER_ALTERNATE_TIMER_H_ |
10 #define BASE_PROFILER_ALTERNATE_TIMER_H_ | 9 #define BASE_PROFILER_ALTERNATE_TIMER_H_ |
11 | 10 |
| 11 #include "base/base_export.h" |
| 12 |
12 namespace tracked_objects { | 13 namespace tracked_objects { |
13 | 14 |
14 // Provide type for an alternate timer function. | 15 // Provide type for an alternate timer function. |
15 typedef unsigned int NowFunction(); | 16 typedef unsigned int NowFunction(); |
16 | 17 |
17 // Set an alternate timer function to replace the OS time function when | |
18 // profiling. Typically this is called by an allocator that is providing a | |
19 // function that indicates how much memory has been allocated on any given | |
20 // thread. | |
21 extern void SetAlternateTimeSource(NowFunction* now_function); | |
22 | |
23 // Gets the pointer to a function that was set via SetAlternateTimeSource(). | |
24 // Returns NULL if no set was done prior to calling GetAlternateTimeSource. | |
25 extern NowFunction* GetAlternateTimeSource(); | |
26 | |
27 // Environment variable name that is used to activate alternate timer profiling | 18 // Environment variable name that is used to activate alternate timer profiling |
28 // (such as using TCMalloc allocations to provide a pseudo-timer) for tasks | 19 // (such as using TCMalloc allocations to provide a pseudo-timer) for tasks |
29 // instead of wall clock profiling. | 20 // instead of wall clock profiling. |
30 extern const char kAlternateProfilerTime[]; | 21 extern const char kAlternateProfilerTime[]; |
31 | 22 |
| 23 // Set an alternate timer function to replace the OS time function when |
| 24 // profiling. Typically this is called by an allocator that is providing a |
| 25 // function that indicates how much memory has been allocated on any given |
| 26 // thread. |
| 27 void SetAlternateTimeSource(NowFunction* now_function); |
32 | 28 |
| 29 // Gets the pointer to a function that was set via SetAlternateTimeSource(). |
| 30 // Returns NULL if no set was done prior to calling GetAlternateTimeSource. |
| 31 BASE_EXPORT NowFunction* GetAlternateTimeSource(); |
33 | 32 |
34 } // tracked_objects | 33 } // namespace tracked_objects |
35 | 34 |
36 #endif // BASE_PROFILER_ALTERNATE_TIMER_H_ | 35 #endif // BASE_PROFILER_ALTERNATE_TIMER_H_ |
OLD | NEW |