Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion libc/include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ add_header_macro(
pthread.h.def
pthread.h
DEPENDS
.llvm_libc_common_h
.llvm-libc-macros.pthread_macros
.llvm-libc-types.__atfork_callback_t
.llvm-libc-types.__pthread_once_func_t
.llvm-libc-types.__pthread_start_t
Expand All @@ -404,6 +404,7 @@ add_header_macro(
.llvm-libc-types.pthread_rwlockattr_t
.llvm-libc-types.pthread_spinlock_t
.llvm-libc-types.pthread_t
.llvm_libc_common_h
)

add_header_macro(
Expand Down
6 changes: 6 additions & 0 deletions libc/include/llvm-libc-macros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -315,3 +315,9 @@ add_macro_header(
HDR
locale-macros.h
)

add_macro_header(
pthread_macros
HDR
pthread-macros.h
)
37 changes: 37 additions & 0 deletions libc/include/llvm-libc-macros/pthread-macros.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
//===-- Definition of pthread macros --------------------------------------===//
//
// 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_MACROS_PTHREAD_MACRO_H
#define LLVM_LIBC_MACROS_PTHREAD_MACRO_H

#define PTHREAD_CREATE_JOINABLE 0
#define PTHREAD_CREATE_DETACHED 1

#define PTHREAD_MUTEX_NORMAL 0
#define PTHREAD_MUTEX_ERRORCHECK 1
#define PTHREAD_MUTEX_RECURSIVE 2
#define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL

#define PTHREAD_MUTEX_STALLED 0
#define PTHREAD_MUTEX_ROBUST 1

#define PTHREAD_ONCE_INIT {0}

#define PTHREAD_PROCESS_PRIVATE 0
#define PTHREAD_PROCESS_SHARED 1

#define PTHREAD_MUTEX_INITIALIZER {0}
#define PTHREAD_RWLOCK_INITIALIZER {0}

// glibc extensions
#define PTHREAD_STACK_MIN (1 << 14) // 16KB
#define PTHREAD_RWLOCK_PREFER_READER_NP 0
#define PTHREAD_RWLOCK_PREFER_WRITER_NP 1
#define PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP 2

#endif // LLVM_LIBC_MACROS_PTHREAD_MACRO_H
34 changes: 1 addition & 33 deletions libc/include/pthread.h.def
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,7 @@
#define LLVM_LIBC_PTHREAD_H

#include "__llvm-libc-common.h"

// TODO: move to a pthreads-macros.h file:
// https://github.com/llvm/llvm-project/issues/88997

#define PTHREAD_STACK_MIN (1 << 14) // 16KB

#define PTHREAD_MUTEX_INITIALIZER {0}
#define PTHREAD_RWLOCK_INITIALIZER {}
#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,
};

#define PTHREAD_PROCESS_PRIVATE 0
#define PTHREAD_PROCESS_SHARED 1

#define PTHREAD_RWLOCK_PREFER_READER_NP 0
#define PTHREAD_RWLOCK_PREFER_WRITER_NP 1
#define PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP 2

#include "llvm-libc-macros/pthread-macros.h"

%%public_api()

Expand Down
Loading