Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(721)

Unified Diff: base/threading/platform_thread_freebsd.cc

Issue 1739993004: content: Implement dynamic priorities for raster threads. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: preparing for checkin. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/threading/platform_thread_freebsd.cc
diff --git a/base/threading/platform_thread_freebsd.cc b/base/threading/platform_thread_freebsd.cc
index 44f14c873e015383ad8ac84445f82dccff4d47a7..8f6795b2a99c4402bd6ff060d9aa7aa0a64bf3a8 100644
--- a/base/threading/platform_thread_freebsd.cc
+++ b/base/threading/platform_thread_freebsd.cc
@@ -62,6 +62,12 @@ bool GetCurrentThreadPriorityForPlatform(ThreadPriority* priority) {
return false;
}
+bool SetChildThreadPriorityInCurrentProcess(PlatformThreadId tid,
+ ThreadPriority priority) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
} // namespace internal
// static

Powered by Google App Engine
This is Rietveld 408576698