llvm/libc/include/pthread.h.def
Siva Chandra Reddy 0258f56646 [libc] Add a definition of pthread_attr_t and its getters and setters.
Not all attributes have been added to phtread_attr_t in this patch. They
will be added gradually in future patches.

Reviewed By: lntue

Differential Revision: https://reviews.llvm.org/D123423
2022-04-11 16:08:49 +00:00

35 lines
902 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
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