X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/eb6b6ca394357805f2bdba989abae309f718b4d8..f427ee49d309d8fc33ebf3042c3a775f2f530ded:/osfmk/kperf/callstack.h diff --git a/osfmk/kperf/callstack.h b/osfmk/kperf/callstack.h index e4a0cd5e0..44779548d 100644 --- a/osfmk/kperf/callstack.h +++ b/osfmk/kperf/callstack.h @@ -46,6 +46,10 @@ #define CALLSTACK_CONTINUATION (1U << 5) /* the frames field is filled with uintptr_t, not uint64_t */ #define CALLSTACK_KERNEL_WORDS (1U << 6) +/* the frames come from a translated task */ +#define CALLSTACK_TRANSLATED (1U << 7) +/* the last frame could be the real PC */ +#define CALLSTACK_FIXUP_PC (1U << 8) struct kp_ucallstack { uint32_t kpuc_flags;