aboutsummaryrefslogtreecommitdiff
path: root/libc/src/pthread/pthread_detach.cpp
AgeCommit message (Collapse)AuthorFilesLines
2024-07-12[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98597)Petr Hosek1-2/+3
This is a part of #97655.
2024-07-12Revert "[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace ↵Mehdi Amini1-3/+2
declaration" (#98593) Reverts llvm/llvm-project#98075 bots are broken
2024-07-11[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98075)Petr Hosek1-2/+3
This is a part of #97655.
2023-09-26[libc] Mass replace enclosing namespace (#67032)Guillaume Chatelet1-3/+3
This is step 4 of https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079
2022-06-24[libc][NFC] Remove the templatization from the linux implementation of thread.Siva Chandra Reddy1-3/+3
This enables setting up a single "self" thread object to be returned by API like thrd_self and pthread_self.
2022-06-11[libc] Add pthread_detach and thrd_detach.Siva Chandra Reddy1-0/+27
Tests for pthread_detach and thrd_detach have not been added. Instead, a test for the underlying implementation has been added as it makes use of an internal wait method to synchronize with detached threads. Reviewed By: lntue, michaelrj Differential Revision: https://reviews.llvm.org/D127479