blob: 674acc6ade6266044d64a739b83b91abb4fdde38 [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 sem_clockwait.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SEMAPHORE_SEM_CLOCKWAIT_H
#define LLVM_LIBC_SRC_SEMAPHORE_SEM_CLOCKWAIT_H
#include "hdr/types/clockid_t.h"
#include "hdr/types/sem_t.h"
#include "hdr/types/struct_timespec.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
int sem_clockwait(sem_t *__restrict sem, clockid_t clock_id,
const struct timespec *__restrict abstime);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_SEMAPHORE_SEM_CLOCKWAIT_H