commit | b6817d793fa647ec77aaaaf74df82a94e46632bb | [log] [tgz] |
---|---|---|
author | tommi@webrtc.org <tommi@webrtc.org> | Fri Mar 20 15:51:39 2015 +0000 |
committer | tommi@webrtc.org <tommi@webrtc.org> | Fri Mar 20 15:52:43 2015 +0000 |
tree | 486648bc84b67be8784504c76bff273ffe240015 | |
parent | 66df3cf7ab7c2fa743d428cb1b44197906810141 [diff] [blame] |
- 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 Cr-Commit-Position: refs/heads/master@{#8810} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8810 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/utility/source/process_thread_impl.cc b/webrtc/modules/utility/source/process_thread_impl.cc index 33a1c4f..5b50539 100644 --- a/webrtc/modules/utility/source/process_thread_impl.cc +++ b/webrtc/modules/utility/source/process_thread_impl.cc
@@ -70,7 +70,7 @@ m.module->ProcessThreadAttached(this); thread_ = ThreadWrapper::CreateThread( - &ProcessThreadImpl::Run, this, kNormalPriority, "ProcessThread"); + &ProcessThreadImpl::Run, this, "ProcessThread"); CHECK(thread_->Start()); }