blob: 75c5cad992b370e08f5c223d1cff9fe0990345ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/profiler.h"
#include "base/string_util.h"
// When actually using quantify, uncomment the following line.
//#define QUANTIFY
#ifdef QUANTIFY
// this #define is used to prevent people from directly using pure.h
// instead of profiler.h
#define PURIFY_PRIVATE_INCLUDE
#include "base/third_party/purify/pure.h"
#endif // QUANTIFY
namespace base {
void Profiler::StartRecording() {
#ifdef QUANTIFY
QuantifyStartRecordingData();
#endif
}
void Profiler::StopRecording() {
#ifdef QUANTIFY
QuantifyStopRecordingData();
#endif
}
void Profiler::ClearData() {
#ifdef QUANTIFY
QuantifyClearData();
#endif
}
void Profiler::SetThreadName(const char *name) {
#ifdef QUANTIFY
// make a copy since the Quantify function takes a char*, not const char*
char buffer[512];
base::snprintf(buffer, sizeof(buffer)-1, "%s", name);
QuantifySetThreadName(buffer);
#endif
}
} // namespace base
|