File tree Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -550,6 +550,14 @@ KdSendPacket(
550
550
551
551
return ;
552
552
}
553
+ else if (PacketType == PACKET_TYPE_KD_STATE_CHANGE64 )
554
+ {
555
+ PDBGKD_ANY_WAIT_STATE_CHANGE WaitStateChange = (PDBGKD_ANY_WAIT_STATE_CHANGE )MessageHeader -> Buffer ;
556
+ if (WaitStateChange -> NewState == DbgKdLoadSymbolsStateChange )
557
+ {
558
+ return ;
559
+ }
560
+ }
553
561
UNIMPLEMENTED ;
554
562
}
555
563
@@ -572,6 +580,14 @@ KdReceivePacket(
572
580
STRING ResponseString ;
573
581
#endif
574
582
583
+ if (PacketType == PACKET_TYPE_KD_STATE_MANIPULATE )
584
+ {
585
+ PDBGKD_MANIPULATE_STATE64 ManipulateState = (PDBGKD_MANIPULATE_STATE64 )MessageHeader -> Buffer ;
586
+ ManipulateState -> ApiNumber = DbgKdContinueApi ;
587
+ ManipulateState -> u .Continue .ContinueStatus = STATUS_SUCCESS ;
588
+ return KdPacketReceived ;
589
+ }
590
+
575
591
if (PacketType != PACKET_TYPE_KD_DEBUG_IO )
576
592
return KdPacketTimedOut ;
577
593
Original file line number Diff line number Diff line change @@ -28,15 +28,6 @@ KdpReportCommandStringStateChange(IN PSTRING NameString,
28
28
{
29
29
}
30
30
31
- VOID
32
- NTAPI
33
- KdpReportLoadSymbolsStateChange (IN PSTRING PathName ,
34
- IN PKD_SYMBOLS_INFO SymbolInfo ,
35
- IN BOOLEAN Unload ,
36
- IN OUT PCONTEXT Context )
37
- {
38
- }
39
-
40
31
BOOLEAN
41
32
NTAPI
42
33
KdpReportExceptionStateChange (IN PEXCEPTION_RECORD ExceptionRecord ,
Original file line number Diff line number Diff line change @@ -1576,7 +1576,6 @@ KdpSendWaitContinue(IN ULONG PacketType,
1576
1576
}
1577
1577
}
1578
1578
1579
- #ifdef _WINKD_
1580
1579
VOID
1581
1580
NTAPI
1582
1581
KdpReportLoadSymbolsStateChange (IN PSTRING PathName ,
@@ -1649,6 +1648,7 @@ KdpReportLoadSymbolsStateChange(IN PSTRING PathName,
1649
1648
} while (Status == ContinueProcessorReselected );
1650
1649
}
1651
1650
1651
+ #ifdef _WINKD_
1652
1652
VOID
1653
1653
NTAPI
1654
1654
KdpReportCommandStringStateChange (IN PSTRING NameString ,
You can’t perform that action at this time.
0 commit comments