| Index: base/threading/platform_thread_freebsd.cc
|
| diff --git a/base/threading/platform_thread_freebsd.cc b/base/threading/platform_thread_freebsd.cc
|
| index fe69cdb1edb5aabfd3ce8af5164539bdebd2800d..ae855515f0154146afc81f4bfe6a90910b371740 100644
|
| --- a/base/threading/platform_thread_freebsd.cc
|
| +++ b/base/threading/platform_thread_freebsd.cc
|
| @@ -16,7 +16,6 @@
|
|
|
| #if !defined(OS_NACL)
|
| #include <pthread.h>
|
| -#include <sys/prctl.h>
|
| #include <sys/types.h>
|
| #include <unistd.h>
|
| #endif
|
| @@ -36,7 +35,7 @@ const ThreadPriorityToNiceValuePair kThreadPriorityToNiceValueMap[4] = {
|
| {ThreadPriority::NORMAL, 0},
|
| {ThreadPriority::DISPLAY, -6},
|
| {ThreadPriority::REALTIME_AUDIO, -10},
|
| -}
|
| +};
|
|
|
| bool SetCurrentThreadPriorityForPlatform(ThreadPriority priority) {
|
| #if !defined(OS_NACL)
|
|
|