blob: 8e0cb0d0629aee7475e971711fec4afabb11bd76 [file] [log] [blame]
//===-- Implementation header for sched_setscheduler -------------*- C++-*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SCHED_SCHED_SETSCHEDULER_H
#define LLVM_LIBC_SRC_SCHED_SCHED_SETSCHEDULER_H
#include <sched.h>
namespace LIBC_NAMESPACE {
int sched_setscheduler(pid_t tid, int policy, const struct sched_param *param);
} // namespace LIBC_NAMESPACE
#endif // LLVM_LIBC_SRC_SCHED_SCHED_SETSCHEDULER_H