[Lldb-commits] [PATCH] D49579: Support parsing minidump files that are created by Breakpad.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 20 10:39:05 PDT 2018


clayborg added a comment.

The "sometimes" depends on how compilers pad the structures that define the lists. Since the structs look like:

  struct MemoryList {
    uint32_t count;
    MemoryDescriptor descriptors[];
  };

The compiler might end up padding and extra 4 bytes depending on what is in the struct that follows the count. I can clarify this in my comments.


https://reviews.llvm.org/D49579





More information about the lldb-commits mailing list