Use atomic operations for setting/reading the trace filter.

The filter is currently being set and read by a number of threads and tripping up tsan.

R=mflodman@webrtc.org
BUG=

Review URL: https://webrtc-codereview.appspot.com/47609004

Cr-Commit-Position: refs/heads/master@{#8753}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8753 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
tommi@webrtc.org 2015-03-17 13:46:42 +00:00
parent a846371ace
commit c383c24c2b
3 changed files with 33 additions and 7 deletions

View File

@ -163,19 +163,31 @@ class AtomicOps {
static int Decrement(volatile int* i) {
return ::InterlockedDecrement(reinterpret_cast<volatile LONG*>(i));
}
// No barrier load.
static int Load(volatile const int* i) {
return *i;
}
// No barrier store.
static void Store(volatile int* i, int value) {
*i = value;
}
#else
static int Increment(volatile int* i) {
return __sync_add_and_fetch(i, 1);
return __atomic_add_fetch(i, 1, __ATOMIC_SEQ_CST);
}
static int Decrement(volatile int* i) {
return __sync_sub_and_fetch(i, 1);
return __atomic_sub_fetch(i, 1, __ATOMIC_SEQ_CST);
}
// No barrier load.
static int Load(volatile const int* i) {
// Adding 0 is a no-op, so const_cast is fine.
return __sync_add_and_fetch(const_cast<volatile int*>(i), 0);
return __atomic_load_n(const_cast<volatile int*>(i), 0);
}
// No barrier store.
static void Store(volatile int* i, int value) {
__atomic_store_n(i, value, __ATOMIC_RELAXED);
}
#endif
};

View File

@ -49,10 +49,10 @@ class Trace {
// filter parameter is a bitmask where each message type is enumerated by the
// TraceLevel enumerator. TODO(hellner): why is the TraceLevel enumerator not
// defined in this file?
static void set_level_filter(uint32_t filter) { level_filter_ = filter; }
static void set_level_filter(int filter);
// Returns what type of messages are written to the trace file.
static uint32_t level_filter() { return level_filter_; }
static int level_filter();
// Sets the file name. If add_file_counter is false the same file will be
// reused when it fills up. If it's true a new file with incremented name
@ -84,7 +84,7 @@ class Trace {
const char* msg, ...);
private:
static uint32_t level_filter_;
static volatile int level_filter_;
};
} // namespace webrtc

View File

@ -32,7 +32,7 @@ namespace webrtc {
const int Trace::kBoilerplateLength = 71;
const int Trace::kTimestampPosition = 13;
const int Trace::kTimestampLength = 12;
uint32_t Trace::level_filter_ = kTraceDefault;
volatile int Trace::level_filter_ = kTraceDefault;
// Construct On First Use idiom. Avoids "static initialization order fiasco".
TraceImpl* TraceImpl::StaticInstance(CountOperation count_operation,
@ -518,14 +518,17 @@ bool TraceImpl::CreateFileName(
return true;
}
// static
void Trace::CreateTrace() {
TraceImpl::StaticInstance(kAddRef);
}
// static
void Trace::ReturnTrace() {
TraceImpl::StaticInstance(kRelease);
}
// static
int32_t Trace::TraceFile(char file_name[FileWrapper::kMaxFileNameSize]) {
TraceImpl* trace = TraceImpl::GetTrace();
if (trace) {
@ -536,6 +539,17 @@ int32_t Trace::TraceFile(char file_name[FileWrapper::kMaxFileNameSize]) {
return -1;
}
// static
void Trace::set_level_filter(int filter) {
rtc::AtomicOps::Store(&level_filter_, filter);
}
// static
int Trace::level_filter() {
return rtc::AtomicOps::Load(&level_filter_);
}
// static
int32_t Trace::SetTraceFile(const char* file_name,
const bool add_file_counter) {
TraceImpl* trace = TraceImpl::GetTrace();