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
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Aside from a couple of nits, LGTM.
lib/Object/Minidump.cpp | ||
---|---|---|
69 ↗ | (On Diff #196435) | Nit (was there before): to 8-byte -> to an 8-byte |
unittests/Object/MinidumpTest.cpp | ||
446 ↗ | (On Diff #196435) | 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. |
Comment Actions
Thanks for the review.
unittests/Object/MinidumpTest.cpp | ||
---|---|---|
446 ↗ | (On Diff #196435) | There's just one more test besides this one, so I'll update everything in this patch. |