Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/child/child_process.h" | 5 #include "content/child/child_process.h" |
| 6 | 6 |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 96 DCHECK(!main_thread_.get() || // null in unittests. | 96 DCHECK(!main_thread_.get() || // null in unittests. |
| 97 main_thread_->message_loop()->task_runner()->BelongsToCurrentThread()); | 97 main_thread_->message_loop()->task_runner()->BelongsToCurrentThread()); |
| 98 DCHECK(ref_count_); | 98 DCHECK(ref_count_); |
| 99 if (--ref_count_) | 99 if (--ref_count_) |
| 100 return; | 100 return; |
| 101 | 101 |
| 102 if (main_thread_) // null in unittests. | 102 if (main_thread_) // null in unittests. |
| 103 main_thread_->OnProcessFinalRelease(); | 103 main_thread_->OnProcessFinalRelease(); |
| 104 } | 104 } |
| 105 | 105 |
| 106 #if defined(OS_LINUX) | |
| 107 void ChildProcess::SetIOThreadPriority( | |
| 108 base::ThreadPriority io_thread_priority) { | |
| 109 DCHECK(main_thread_.get()); | |
|
Tom Sepez
2016/09/19 22:54:04
DCHECK doesn't buy us much, we'll segv in the next
reveman
2016/09/19 23:14:22
Makes sense. Done.
| |
| 110 main_thread_->SetThreadPriority(io_thread_.GetThreadId(), io_thread_priority); | |
| 111 } | |
| 112 #endif | |
| 113 | |
| 106 ChildProcess* ChildProcess::current() { | 114 ChildProcess* ChildProcess::current() { |
| 107 return g_lazy_tls.Pointer()->Get(); | 115 return g_lazy_tls.Pointer()->Get(); |
| 108 } | 116 } |
| 109 | 117 |
| 110 base::WaitableEvent* ChildProcess::GetShutDownEvent() { | 118 base::WaitableEvent* ChildProcess::GetShutDownEvent() { |
| 111 return &shutdown_event_; | 119 return &shutdown_event_; |
| 112 } | 120 } |
| 113 | 121 |
| 114 void ChildProcess::WaitForDebugger(const std::string& label) { | 122 void ChildProcess::WaitForDebugger(const std::string& label) { |
| 115 #if defined(OS_WIN) | 123 #if defined(OS_WIN) |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 145 memset(&sa, 0, sizeof(sa)); | 153 memset(&sa, 0, sizeof(sa)); |
| 146 sa.sa_handler = SigUSR1Handler; | 154 sa.sa_handler = SigUSR1Handler; |
| 147 sigaction(SIGUSR1, &sa, NULL); | 155 sigaction(SIGUSR1, &sa, NULL); |
| 148 | 156 |
| 149 pause(); | 157 pause(); |
| 150 #endif // defined(OS_ANDROID) | 158 #endif // defined(OS_ANDROID) |
| 151 #endif // defined(OS_POSIX) | 159 #endif // defined(OS_POSIX) |
| 152 } | 160 } |
| 153 | 161 |
| 154 } // namespace content | 162 } // namespace content |
| OLD | NEW |