[libcxx-commits] [PATCH] D142134: [libc++] add FreeBSD atomic wait support
Ed Maste via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jan 19 09:37:11 PST 2023
emaste added inline comments.
================
Comment at: libcxx/src/atomic.cpp:29-33
+#elif defined(__FreeBSD__)
+
+#include <sys/types.h>
+#include <sys/umtx.h>
+
----------------
The CI format job complained about the indentation on the changes in this file, but they are consistent with what is in the file now. Should we run clang-format on it first, and then update this to match?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142134/new/
https://reviews.llvm.org/D142134
More information about the libcxx-commits
mailing list