[all-commits] [llvm/llvm-project] 2f4f45: [libc] Add a skeleton for C standard condition var...
Siva Chandra via All-commits
all-commits at lists.llvm.org
Wed Sep 1 12:42:18 PDT 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 2f4f452f166bbbf0d39193f0e68d680d235e64ba
https://github.com/llvm/llvm-project/commit/2f4f452f166bbbf0d39193f0e68d680d235e64ba
Author: Siva Chandra Reddy <sivachandra at google.com>
Date: 2021-09-01 (Wed, 01 Sep 2021)
Changed paths:
M libc/config/linux/api.td
M libc/config/linux/x86_64/entrypoints.txt
M libc/spec/spec.td
M libc/spec/stdc.td
M libc/src/threads/CMakeLists.txt
A libc/src/threads/cnd_broadcast.h
A libc/src/threads/cnd_destroy.h
A libc/src/threads/cnd_init.h
A libc/src/threads/cnd_signal.h
A libc/src/threads/cnd_wait.h
M libc/src/threads/linux/CMakeLists.txt
A libc/src/threads/linux/cnd_broadcast.cpp
A libc/src/threads/linux/cnd_destroy.cpp
A libc/src/threads/linux/cnd_init.cpp
A libc/src/threads/linux/cnd_signal.cpp
A libc/src/threads/linux/cnd_wait.cpp
Log Message:
-----------
[libc] Add a skeleton for C standard condition variable functions.
This patch adds a skeleton as a preparatory step for the next patch which
adds the actual implementations of the condition variable functions.
Reviewed By: michaelrj
Differential Revision: https://reviews.llvm.org/D108947
More information about the All-commits
mailing list