mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:25:48 +00:00
[NTOS:KE/x64] Fix unwinding in KiUserApcDispatcher
This adds a MACHINE_FRAME to the user mode APC dispatcher stack frame.
This commit is contained in:
parent
91948dea80
commit
29721ac552
3 changed files with 47 additions and 6 deletions
|
@ -1073,6 +1073,15 @@ typedef struct _UCALLOUT_FRAME
|
|||
MACHINE_FRAME MachineFrame;
|
||||
} UCALLOUT_FRAME, *PUCALLOUT_FRAME; // size = 0x0058
|
||||
|
||||
//
|
||||
// User side APC dispatcher frame
|
||||
//
|
||||
typedef struct _UAPC_FRAME
|
||||
{
|
||||
CONTEXT Context;
|
||||
MACHINE_FRAME MachineFrame;
|
||||
} UAPC_FRAME, *PUAPC_FRAME;
|
||||
|
||||
//
|
||||
// Stack frame layout for KiUserExceptionDispatcher
|
||||
// The name is totally made up
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue