diff options
author | Siva Chandra Reddy <sivachandra@google.com> | 2019-12-04 09:06:56 -0800 |
---|---|---|
committer | Siva Chandra Reddy <sivachandra@google.com> | 2020-03-05 13:53:17 -0800 |
commit | abc040e9533011a62a25c93b07b4fc31c8a641f7 (patch) | |
tree | f5d6e0b5c2a175732ea9bc98755226f66a14eeb5 /libc/lib | |
parent | a0cd413426479abb207381bdbab862f3dfb3ce7d (diff) | |
download | llvm-abc040e9533011a62a25c93b07b4fc31c8a641f7.zip llvm-abc040e9533011a62a25c93b07b4fc31c8a641f7.tar.gz llvm-abc040e9533011a62a25c93b07b4fc31c8a641f7.tar.bz2 |
[libc] Add linux implementations of thrd_create and thrd_join functions.
Reviewers: abrachet, phosek
Differential Revision: https://reviews.llvm.org/D75380
Diffstat (limited to 'libc/lib')
-rw-r--r-- | libc/lib/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/lib/CMakeLists.txt b/libc/lib/CMakeLists.txt index b67f8e4..83b19fd 100644 --- a/libc/lib/CMakeLists.txt +++ b/libc/lib/CMakeLists.txt @@ -22,6 +22,10 @@ add_entrypoint_library( # stdlib.h entrypoints _Exit abort + + # threads.h entrypoints + thrd_create + thrd_join ) add_entrypoint_library( |