[libc-commits] [libc] edee61b - [libc] Enable few pthread and threads functions on aarch64.
Siva Chandra via libc-commits
libc-commits at lists.llvm.org
Thu Jul 14 13:26:20 PDT 2022
Author: Siva Chandra
Date: 2022-07-14T13:25:21-07:00
New Revision: edee61b55cf9f2b57d68ef8bcd8b5dcd3296ecab
URL: https://github.com/llvm/llvm-project/commit/edee61b55cf9f2b57d68ef8bcd8b5dcd3296ecab
DIFF: https://github.com/llvm/llvm-project/commit/edee61b55cf9f2b57d68ef8bcd8b5dcd3296ecab.diff
LOG: [libc] Enable few pthread and threads functions on aarch64.
Added:
Modified:
libc/config/linux/aarch64/entrypoints.txt
Removed:
################################################################################
diff --git a/libc/config/linux/aarch64/entrypoints.txt b/libc/config/linux/aarch64/entrypoints.txt
index 47f6c5adc058a..134b3c2f5aafb 100644
--- a/libc/config/linux/aarch64/entrypoints.txt
+++ b/libc/config/linux/aarch64/entrypoints.txt
@@ -245,6 +245,9 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.threads.mtx_lock
libc.src.threads.mtx_unlock
libc.src.threads.thrd_create
+ libc.src.threads.thrd_current
+ libc.src.threads.thrd_detach
+ libc.src.threads.thrd_equal
libc.src.threads.thrd_join
# pthread.h entrypoints
@@ -258,6 +261,15 @@ if(LLVM_LIBC_FULL_BUILD)
libc.src.pthread.pthread_attr_setguardsize
libc.src.pthread.pthread_attr_setstack
libc.src.pthread.pthread_attr_setstacksize
+ libc.src.pthread.pthread_create
+ libc.src.pthread.pthread_detach
+ libc.src.pthread.pthread_equal
+ libc.src.pthread.pthread_join
+ libc.src.pthread.pthread_self
+ libc.src.pthread.pthread_mutex_destroy
+ libc.src.pthread.pthread_mutex_init
+ libc.src.pthread.pthread_mutex_lock
+ libc.src.pthread.pthread_mutex_unlock
libc.src.pthread.pthread_mutexattr_destroy
libc.src.pthread.pthread_mutexattr_init
libc.src.pthread.pthread_mutexattr_getpshared
More information about the libc-commits
mailing list