[Lldb-commits] [lldb] r251537 - Make core files not crash when you load a core file into LLDB with just "lldb -c core".

Ed Maste via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 28 19:54:43 PDT 2015


On 28 October 2015 at 18:04, Greg Clayton via lldb-commits
<lldb-commits at lists.llvm.org> wrote:
> +// LLDB_NT_OWNER_CORE and LLDB_NT_OWNER_LINUX note contants
> +#define NT_PRSTATUS             1
> +#define NT_PRFPREG              2
> +#define NT_PRPSINFO             3
> +#define NT_TASKSTRUCT           4
> +#define NT_AUXV                 6
> +#define NT_SIGINFO              0x53494749
> +#define NT_FILE                 0x46494c45
> +#define NT_PRXFPREG             0x46e62b7f
...

These should really be in a Linux namespace of some sort as they're
Linux-specific note types (although in a number of cases they happen
to be common on FreeBSD).


More information about the lldb-commits mailing list