From edee61b55cf9f2b57d68ef8bcd8b5dcd3296ecab Mon Sep 17 00:00:00 2001 From: Siva Chandra Date: Thu, 14 Jul 2022 13:20:43 -0700 Subject: [PATCH] [libc] Enable few pthread and threads functions on aarch64. --- libc/config/linux/aarch64/entrypoints.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/libc/config/linux/aarch64/entrypoints.txt b/libc/config/linux/aarch64/entrypoints.txt index 47f6c5adc058..134b3c2f5aaf 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 -- 2.34.1