mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 13:51:55 +00:00
Amd64/misc 64bit fixes (#236)
[REACTOS] Misc 64 bit fixes * [NTOS:MM] Allow MEM_DOS_LIM in NtMapViewOfSection on x64 as well * [NTOS:MM] Implement x64 version of MmIsDisabledPage * [HAL] Remove obsolete code * [NTOS:KE] Fix amd64 version of KeContextToTrapFrame and KeTrapFrameToContext * [XDK] Fix CONTEXT_XSTATE definition * [PCNET] Convert physical address types from pointers to PHYSICAL_ADDRESS
This commit is contained in:
parent
5a4693ff6f
commit
a2f7de7ee8
17 changed files with 72 additions and 76 deletions
|
@ -64,11 +64,10 @@ DbgUiConvertStateChangeStructure(IN PDBGUI_WAIT_STATE_CHANGE WaitStateChange,
|
|||
NTSTATUS Status;
|
||||
THREAD_BASIC_INFORMATION ThreadBasicInfo;
|
||||
LPDEBUG_EVENT DebugEvent = Win32DebugEvent;
|
||||
|
||||
|
||||
/* Write common data */
|
||||
DebugEvent->dwProcessId = (DWORD)WaitStateChange->
|
||||
AppClientId.UniqueProcess;
|
||||
DebugEvent->dwThreadId = (DWORD)WaitStateChange->AppClientId.UniqueThread;
|
||||
DebugEvent->dwProcessId = PtrToUlong(WaitStateChange->AppClientId.UniqueProcess);
|
||||
DebugEvent->dwThreadId = PtrToUlong(WaitStateChange->AppClientId.UniqueThread);
|
||||
|
||||
/* Check what kind of even this is */
|
||||
switch (WaitStateChange->NewState)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue