blob: 8a5d65b9d6c2f507e83f5e0566e6ea87d3d7b55e [file] [edit]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation header for __sched_cpualloc.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SCHED_SCHED_CPUALLOC_H
#define LLVM_LIBC_SRC_SCHED_SCHED_CPUALLOC_H
#include "hdr/types/cpu_set_t.h"
#include "hdr/types/size_t.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
cpu_set_t *__sched_cpualloc(size_t count);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_SCHED_SCHED_CPUALLOC_H