summaryrefslogtreecommitdiff
path: root/libc/test/src/pthread/pthread_rwlockattr_test.cpp
AgeCommit message (Collapse)Author
2024-05-30Reland: [libc][POSIX][pthreads] implemented missing pthread_rwlockattr ↵Hendrik Hübner
functions (#93622) New pull request for https://github.com/llvm/llvm-project/issues/89443 The previous PR was reverted after breaking fullbuild due to a missing struct declaration, which I forgot to commit. Reverts revert and adds the missing pthread_rwlockattr_getkind_np / pthread_rwlockattr_setkind_np functions and tests respecitvely.
2024-05-13Revert "[libc][POSIX][pthreads] implemented missing pthread_rwlockattr ↵Schrodinger ZHU Yifan
functions" (#91966) Reverts llvm/llvm-project#90249 Fullbuild is broken: https://lab.llvm.org/buildbot/#/builders/163/builds/56501
2024-05-13[libc][POSIX][pthreads] implemented missing pthread_rwlockattr functions ↵Hendrik Hübner
(#90249) Closes #89443 I added the two missing functions and respective test cases. Let me know if anything needs changing.
2024-04-22[libc][POSIX][pthreads] implement pthread_rwlockattr_t functions (#89322)Nick Desaulniers
Implement: - pthread_rwlockattr_destroy - pthread_rwlockattr_getpshared - pthread_rwlockattr_init - pthread_rwlockattr_setpshared