author | Daniel Holbert <dholbert@cs.stanford.edu> |
Wed, 13 Jun 2012 16:24:48 -0700 | |
changeset 101928 | 669274e1fcf7ab9ca9cfde9ea7fa7ea28f61c348 |
parent 101927 | ff605042a4dc72bec2364782ff0c720030a3240d |
child 101929 | 6d05ace9ed4fdad9d5b5901fd2d295c351caf104 |
push id | 191 |
push user | lsblakk@mozilla.com |
push date | Fri, 05 Oct 2012 17:12:53 +0000 |
treeherder | mozilla-release@ddb22ac6c03b [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | benwa |
bugs | 764616 |
milestone | 16.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/tools/profiler/platform-linux.cc +++ b/tools/profiler/platform-linux.cc @@ -177,18 +177,18 @@ static void* SenderEntry(void* arg) { data->SignalSender(); return 0; } Sampler::Sampler(int interval, bool profiling) : interval_(interval), profiling_(profiling), - active_(false), - paused_(false) { + paused_(false), + active_(false) { data_ = new PlatformData(this); } Sampler::~Sampler() { ASSERT(!data_->signal_sender_launched_); delete data_; }
--- a/tools/profiler/platform-macos.cc +++ b/tools/profiler/platform-macos.cc @@ -291,18 +291,18 @@ class SamplerThread : public Thread { Mutex* SamplerThread::mutex_ = OS::CreateMutex(); SamplerThread* SamplerThread::instance_ = NULL; Sampler::Sampler(int interval, bool profiling) : // isolate_(isolate), interval_(interval), profiling_(profiling), - active_(false), - paused_(false) /*, + paused_(false), + active_(false) /*, samples_taken_(0)*/ { data_ = new PlatformData; } Sampler::~Sampler() { ASSERT(!IsActive()); delete data_;
--- a/tools/profiler/platform-win32.cc +++ b/tools/profiler/platform-win32.cc @@ -116,18 +116,18 @@ class SamplerThread : public Thread { }; SamplerThread* SamplerThread::instance_ = NULL; Sampler::Sampler(int interval, bool profiling) : interval_(interval), profiling_(profiling), + paused_(false), active_(false), - paused_(false), data_(new PlatformData) { } Sampler::~Sampler() { ASSERT(!IsActive()); delete data_; }