[Lldb-commits] [PATCH] D66445: Explicitly Cast Constants to DWORD
Gwen Mittertreiner via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 22 09:47:49 PDT 2019
jmittert added a comment.
I believe it's using the one in ntstatus.h
10.0.16299.0\shared\ntstatus.h
#define STATUS_BREAKPOINT ((NTSTATUS)0x80000003L) // winnt
And `NTSTATUS` is defined as a `LONG` in powerbase.h
10.0.16299.0\um\powerbase.h
#define NTSTATUS LONG
which would make it a signed (negative) number.
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66445/new/
https://reviews.llvm.org/D66445
More information about the lldb-commits
mailing list