commit | 90a1cb463092c5189b1a69837731a3395d79f61c | [log] [tgz] |
---|---|---|
author | tommi@webrtc.org <tommi@webrtc.org> | Sun Mar 22 14:33:54 2015 +0000 |
committer | tommi@webrtc.org <tommi@webrtc.org> | Sun Mar 22 14:34:46 2015 +0000 |
tree | c273cd8de1977327e8974ecf42e2882dc1edf51b | |
parent | b789f6271a4af84f770a8957c9a3c6aab4971ed8 [diff] [blame] |
Revert 8810 "- Add a SetPriority method to ThreadWrapper" Seeing if this is causing roll issues. > - Add a SetPriority method to ThreadWrapper > - Remove 'priority' from CreateThread and related member variables from implementations > - Make supplying a name for threads, non-optional > > BUG= > R=magjed@webrtc.org > > Review URL: https://webrtc-codereview.appspot.com/44729004 TBR=tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/48609004 Cr-Commit-Position: refs/heads/master@{#8818} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8818 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/system_wrappers/source/condition_variable_unittest.cc b/webrtc/system_wrappers/source/condition_variable_unittest.cc index c34c4ea..d6907f6 100644 --- a/webrtc/system_wrappers/source/condition_variable_unittest.cc +++ b/webrtc/system_wrappers/source/condition_variable_unittest.cc
@@ -145,7 +145,7 @@ virtual void SetUp() { thread_ = ThreadWrapper::CreateThread(&WaitingRunFunction, - &baton_, "CondVarTest"); + &baton_); ASSERT_TRUE(thread_->Start()); }