[libcxx-commits] [PATCH] D120348: [libcxx][SystemZ][ POSIX(OFF) support on z/OS
Arthur O'Dwyer via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 22 15:16:11 PST 2022
Quuxplusone added a comment.
Does this mean that D110349 <https://reviews.llvm.org/D110349> and/or D117375 <https://reviews.llvm.org/D117375> could be closed/abandoned at this point?
================
Comment at: libcxxabi/src/cxa_guard_impl.h:296
+ bool wait(LibcppMutex& mut) { return _VSTD::internal_thread::__libcpp_condvar_wait(&cond, &mut.mutex); }
+ bool broadcast() { return _VSTD::internal_thread::__libcpp_condvar_broadcast(&cond); }
----------------
Do you know a concrete reason that `_VSTD` is needed here, i.e. why wouldn't `std::internal_thread::__libcpp_condvar_broadcast` work here?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120348/new/
https://reviews.llvm.org/D120348
More information about the libcxx-commits
mailing list