[Lldb-commits] [PATCH] D65207: LLGS: fix tracking execve on linux
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 24 23:32:42 PDT 2019
labath added a comment.
In D65207#1600100 <https://reviews.llvm.org/D65207#1600100>, @clayborg wrote:
> Is this not going to be racy on other platforms? Or do all platforms stop at entry point once a program has been exec'ed? I am worried we might miss the breakpoint.
stopping on exec is a pretty standard feature of all ptrace-ish implementations, so I think all platforms should be able to implement that. Whether they actually implement it is a different question, and I wouldn't be surprised if this test ends up failing on some BSDs for example.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65207/new/
https://reviews.llvm.org/D65207
More information about the lldb-commits
mailing list