| Anterior | Siguiente |
| STATUS_WX86_SINGLE_STEP | STATUS_WX86_EXCEPTION_CONTINUE |
STATUS_WX86_BREAKPOINT
Qué significa STATUS_WX86_BREAKPOINT
STATUS_WX86_BREAKPOINT es distinto del native STATUS_BREAKPOINT y debe mantenerse como valor separado en debugger/crash tooling. El código aporta contexto: el evento pertenece a la familia WX86 de emulación.
No hay base pública para afirmar un algoritmo interno concreto de patching del breakpoint. La investigación debe usar raw status, chance, guest instruction pointer, breakpoint address y decisión del debugger al continuar.
Qué comprobar
- No normalice WX86_BREAKPOINT a STATUS_BREAKPOINT en la recolección.
- Capture breakpoint address y emulated x86 context.
- Revise debugger filter y continue disposition.
- Busque re-trigger si el instruction pointer no avanza como espera la herramienta.
Referencias técnicas
- Microsoft Open Specifications: NTSTATUS values
- Microsoft DbgShell source: WX86 exception filters
- Microsoft: Debugger Exception Handling
- Microsoft: Controlling Exceptions and Events
¿Buscas un código diferente? Buscar otro código de estado o error.