The stream contains the list of threads belonging to the process
described by the minidump. Its structure is the same as the ModuleList
stream, and in fact, I have generalized the ModuleList reading code to
handle this stream too.
Details
Diff Detail
- Repository
- rL LLVM
- Build Status
Buildable 30935 Build 30934: arc lint + arc unit
Event Timeline
Aside from a couple of nits, LGTM.
lib/Object/Minidump.cpp | ||
---|---|---|
69 | Nit (was there before): to 8-byte -> to an 8-byte | |
unittests/Object/MinidumpTest.cpp | ||
446 | I missed this in the other tests, but this could be an ArrayRef<uint8_t> instead of a const std::vector<uint8_t> &. Feel free to leave it as is or to update it in an NFC throughout this test afterwards, if you would prefer to leave it to another patch. |
Thanks for the review.
unittests/Object/MinidumpTest.cpp | ||
---|---|---|
446 | There's just one more test besides this one, so I'll update everything in this patch. |
Nit (was there before): to 8-byte -> to an 8-byte