class documentation
class FrameStartType(_Enum):
Enum describing the various type of stack frame start.
- Call: The stack frame was started on a call instruction
- Interrupt: The stack frame was started on an interrupt event
- Manual: The stack frame was started on an inactive stack (not the current one). This happens on userland callback from kernelland.
- Damaged: The stack frame is artificial and used to replace other ones that were modified (return address) on an inactive stack (not the current one).
- Unknown: The stack frame is on the stack but the creation is unknown. For example, the stack frame was started by a call that was executed before the beginning of the trace.