[Lldb-commits] [PATCH] D157654: [lldb] Fix data race in PipePosix
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 11 10:43:39 PDT 2023
JDevlieghere requested changes to this revision.
JDevlieghere added a comment.
This revision now requires changes to proceed.
Shouldn't we have two murexes, one for the read FD and one for the write FD? The current approach is overly strict: it preventing concurrent reads and writes because `ReadWithTimeout` and `Write` are locking the same mutex.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157654/new/
https://reviews.llvm.org/D157654
More information about the lldb-commits
mailing list