chromium/base/threading/platform_thread_internal_posix.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/threading/platform_thread_internal_posix.h"

#include <errno.h>
#include <sys/resource.h>

#include <ostream>

#include "base/containers/adapters.h"
#include "base/logging.h"
#include "base/notimplemented.h"
#include "base/notreached.h"

namespace base {

namespace internal {

BASE_EXPORT int ThreadTypeToNiceValue(ThreadType thread_type) {}

ThreadPriorityForTest NiceValueToThreadPriorityForTest(int nice_value) {}

int GetCurrentThreadNiceValue() {}

}  // namespace internal

}  // namespace base