[libc-commits] [libc] [libc][docs] stub out pthread.h support (PR #122497)

via libc-commits libc-commits at lists.llvm.org
Fri Jan 10 10:04:14 PST 2025


================
@@ -0,0 +1,260 @@
+functions:
+  pthread_atfork:
+    in-latest-posix: ''
+  pthread_attr_destroy:
+    in-latest-posix: ''
+  pthread_attr_getdetachstate:
+    in-latest-posix: ''
+  pthread_attr_getguardsize:
+    in-latest-posix: ''
+  pthread_attr_getinheritsched:
+    in-latest-posix: ''
+  pthread_attr_getschedparam:
+    in-latest-posix: ''
+  pthread_attr_getschedpolicy:
+    in-latest-posix: ''
+  pthread_attr_getscope:
+    in-latest-posix: ''
+  pthread_attr_getstack:
+    in-latest-posix: ''
+  pthread_attr_getstacksize:
+    in-latest-posix: ''
+  pthread_attr_init:
+    in-latest-posix: ''
+  pthread_attr_setdetachstate:
+    in-latest-posix: ''
+  pthread_attr_setguardsize:
+    in-latest-posix: ''
+  pthread_attr_setinheritsched:
+    in-latest-posix: ''
+  pthread_attr_setschedparam:
+    in-latest-posix: ''
+  pthread_attr_setschedpolicy:
+    in-latest-posix: ''
+  pthread_attr_setscope:
+    in-latest-posix: ''
+  pthread_attr_setstack:
+    in-latest-posix: ''
+  pthread_attr_setstacksize:
+    in-latest-posix: ''
+  pthread_barrier_destroy:
+    in-latest-posix: ''
+  pthread_barrier_init:
+    in-latest-posix: ''
+  pthread_barrier_wait:
+    in-latest-posix: ''
+  pthread_barrierattr_destroy:
+    in-latest-posix: ''
+  pthread_barrierattr_getpshared:
+    in-latest-posix: ''
+  pthread_barrierattr_init:
+    in-latest-posix: ''
+  pthread_barrierattr_setpshared:
+    in-latest-posix: ''
+  pthread_cancel:
+    in-latest-posix: ''
+  pthread_cleanup_pop:
+    in-latest-posix: ''
+  pthread_cleanup_push:
+    in-latest-posix: ''
+  pthread_cond_broadcast:
+    in-latest-posix: ''
+  pthread_cond_clockwait:
+    in-latest-posix: ''
+  pthread_cond_destroy:
+    in-latest-posix: ''
+  pthread_cond_init:
+    in-latest-posix: ''
+  pthread_cond_signal:
+    in-latest-posix: ''
+  pthread_cond_timedwait:
+    in-latest-posix: ''
+  pthread_cond_wait:
+    in-latest-posix: ''
+  pthread_condattr_destroy:
+    in-latest-posix: ''
+  pthread_condattr_getclock:
+    in-latest-posix: ''
+  pthread_condattr_getpshared:
+    in-latest-posix: ''
+  pthread_condattr_init:
+    in-latest-posix: ''
+  pthread_condattr_setclock:
+    in-latest-posix: ''
+  pthread_condattr_setpshared:
+    in-latest-posix: ''
+  pthread_create:
+    in-latest-posix: ''
+  pthread_detach:
+    in-latest-posix: ''
+  pthread_equal:
+    in-latest-posix: ''
+  pthread_exit:
+    in-latest-posix: ''
+  pthread_getcpuclockid:
+    in-latest-posix: ''
+  pthread_getschedparam:
+    in-latest-posix: ''
+  pthread_getspecific:
+    in-latest-posix: ''
+  pthread_join:
+    in-latest-posix: ''
+  pthread_key_create:
+    in-latest-posix: ''
+  pthread_key_delete:
+    in-latest-posix: ''
+  pthread_mutex_clocklock:
+    in-latest-posix: ''
----------------
StarOne01 wrote:

missing function `pthread_mutex_consistent`



https://github.com/llvm/llvm-project/pull/122497


More information about the libc-commits mailing list