mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[NTOSKRNL]
Stop spamming "Received Unhandled API 315f", when using recent versions of WinDbg. svn path=/trunk/; revision=62037
This commit is contained in:
parent
dead0458d9
commit
d112f4df7e
1 changed files with 14 additions and 1 deletions
|
@ -1354,6 +1354,19 @@ SendPacket:
|
|||
KdpNotSupported(&ManipulateState);
|
||||
break;
|
||||
|
||||
case 0x315f: // This one is unknown, but used by WinDbg, keep silent!
|
||||
|
||||
/* Setup an empty message, with failure */
|
||||
Data.Length = 0;
|
||||
ManipulateState.ReturnStatus = STATUS_UNSUCCESSFUL;
|
||||
|
||||
/* Send it */
|
||||
KdSendPacket(PACKET_TYPE_KD_STATE_MANIPULATE,
|
||||
&Header,
|
||||
&Data,
|
||||
&KdpContext);
|
||||
break;
|
||||
|
||||
/* Unsupported Message */
|
||||
default:
|
||||
|
||||
|
@ -1739,7 +1752,7 @@ KdExitDebugger(IN BOOLEAN Enable)
|
|||
{
|
||||
/* Queue a DPC for the time slip */
|
||||
InterlockedIncrement(&KdpTimeSlipPending);
|
||||
KeInsertQueueDpc(&KdpTimeSlipDpc, NULL, NULL);
|
||||
KeInsertQueueDpc(&KdpTimeSlipDpc, NULL, NULL); // FIXME: this can trigger context switches!
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue