Files
clang-p2996/libc/include/pthread.h.def
Siva Chandra Reddy 3367539010 [libc] Add implementation of pthread_once.
The existing thrd_once function has been refactored so that the
implementation can be shared between thrd_once and pthread_once
functions.

Reviewed By: michaelrj

Differential Revision: https://reviews.llvm.org/D134716
2022-09-28 06:54:48 +00:00

37 lines
933 B
Modula-2

//===-- POSIX header pthread.h --------------------------------------------===//
//
// 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_PTHREAD_H
#define LLVM_LIBC_PTHREAD_H
#include <__llvm-libc-common.h>
#define PTHREAD_STACK_MIN (1 << 14) // 16KB
#define PTHREAD_ONCE_INIT {0}
enum {
PTHREAD_CREATE_JOINABLE = 0x0,
PTHREAD_CREATE_DETACHED = 0x1,
PTHREAD_MUTEX_NORMAL = 0x0,
PTHREAD_MUTEX_ERRORCHECK = 0x1,
PTHREAD_MUTEX_RECURSIVE = 0x2,
PTHREAD_MUTEX_DEFAULT = PTHREAD_MUTEX_NORMAL,
PTHREAD_PROCESS_PRIVATE = 0x0,
PTHREAD_PROCESS_SHARED = 0x1,
PTHREAD_MUTEX_STALLED = 0x0,
PTHREAD_MUTEX_ROBUST = 0x1,
};
%%public_api()
#endif // LLVM_LIBC_PTHREAD_H