mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 09:29:43 +00:00
[NTOS:KD] Merge KdPowerTransition/KdChangeOption with kd64 version
This commit is contained in:
parent
453edbb5da
commit
e09554a06c
3 changed files with 2 additions and 29 deletions
|
@ -391,33 +391,6 @@ KdEnableDebugger(VOID)
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
NTSTATUS
|
|
||||||
NTAPI
|
|
||||||
KdPowerTransition(ULONG PowerState)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
NTSTATUS
|
|
||||||
NTAPI
|
|
||||||
KdChangeOption(IN KD_OPTION Option,
|
|
||||||
IN ULONG InBufferLength OPTIONAL,
|
|
||||||
IN PVOID InBuffer,
|
|
||||||
IN ULONG OutBufferLength OPTIONAL,
|
|
||||||
OUT PVOID OutBuffer,
|
|
||||||
OUT PULONG OutBufferRequiredLength OPTIONAL)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -2205,6 +2205,7 @@ KdSystemDebugControl(
|
||||||
DbgPrint("KdSystemDebugControl is unimplemented!\n");
|
DbgPrint("KdSystemDebugControl is unimplemented!\n");
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
|
@ -2291,6 +2292,7 @@ KdPowerTransition(IN DEVICE_POWER_STATE NewState)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _WINKD_
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -79,7 +79,6 @@ PKDEBUG_SWITCH_ROUTINE KiDebugSwitchRoutine;
|
||||||
//
|
//
|
||||||
// Debugger Configuration Settings
|
// Debugger Configuration Settings
|
||||||
//
|
//
|
||||||
#ifdef _WINKD_
|
|
||||||
BOOLEAN KdBreakAfterSymbolLoad;
|
BOOLEAN KdBreakAfterSymbolLoad;
|
||||||
BOOLEAN KdPitchDebugger;
|
BOOLEAN KdPitchDebugger;
|
||||||
BOOLEAN KdDebuggerNotPresent;
|
BOOLEAN KdDebuggerNotPresent;
|
||||||
|
@ -92,7 +91,6 @@ BOOLEAN KdpDebuggerStructuresInitialized;
|
||||||
BOOLEAN KdEnteredDebugger;
|
BOOLEAN KdEnteredDebugger;
|
||||||
ULONG KdDisableCount;
|
ULONG KdDisableCount;
|
||||||
LARGE_INTEGER KdPerformanceCounterRate;
|
LARGE_INTEGER KdPerformanceCounterRate;
|
||||||
#endif
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Breakpoint Data
|
// Breakpoint Data
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue