blob: 12beea073cbf80e2dd9504cbf36cef264d2778aa [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_timedwait.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SEMAPHORE_SEM_TIMEDWAIT_H
#define LLVM_LIBC_SRC_SEMAPHORE_SEM_TIMEDWAIT_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_timedwait(sem_t *__restrict sem,
const struct timespec *__restrict abstime);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_SEMAPHORE_SEM_TIMEDWAIT_H