@@ -50,7 +50,9 @@ typedef struct WindbgState {
50
50
uint32_t data_packet_id ;
51
51
bool is_loaded ;
52
52
53
+ #if (WINDBG_DEBUG_ON )
53
54
FILE * dump_file ;
55
+ #endif
54
56
} WindbgState ;
55
57
56
58
static WindbgState * windbg_state = NULL ;
@@ -61,6 +63,7 @@ static WindbgState *windbg_state = NULL;
61
63
62
64
void windbg_dump (const char * fmt , ...)
63
65
{
66
+ #if (WINDBG_DEBUG_ON )
64
67
va_list ap ;
65
68
66
69
va_start (ap , fmt );
@@ -69,6 +72,7 @@ void windbg_dump(const char *fmt, ...)
69
72
fflush (windbg_state -> dump_file );
70
73
}
71
74
va_end (ap );
75
+ #endif
72
76
}
73
77
74
78
static void windbg_send_data_packet (uint8_t * data , uint16_t byte_count , uint16_t type )
@@ -119,8 +123,10 @@ static void windbg_bp_handler(CPUState *cpu)
119
123
120
124
static void windbg_vm_stop (void )
121
125
{
126
+ CPUState * cpu = qemu_get_cpu (0 );
122
127
vm_stop (RUN_STATE_PAUSED );
123
- windbg_bp_handler (qemu_get_cpu (0 ));
128
+ cpu_single_step (cpu , 0 );
129
+ windbg_bp_handler (cpu );
124
130
}
125
131
126
132
static void windbg_process_manipulate_packet (ParsingContext * ctx )
@@ -553,8 +559,9 @@ void windbg_start_sync(void)
553
559
static void windbg_exit (void )
554
560
{
555
561
windbg_on_exit ();
556
-
562
+ #if ( WINDBG_DEBUG_ON )
557
563
FCLOSE (windbg_state -> dump_file );
564
+ #endif
558
565
#if (ENABLE_PARSER )
559
566
FCLOSE (parsed_packets );
560
567
FCLOSE (parsed_api );
@@ -588,9 +595,9 @@ int windbg_start(const char *device)
588
595
qemu_chr_add_handlers (windbg_state -> chr , windbg_chr_can_receive ,
589
596
windbg_chr_receive , NULL , NULL );
590
597
591
- // open dump file
598
+ #if ( WINDBG_DEBUG_ON )
592
599
windbg_state -> dump_file = fopen (WINDBG_DIR "dump.txt" , "wb" );
593
-
600
+ #endif
594
601
#if (ENABLE_PARSER )
595
602
windbg_debug_open_files ();
596
603
#endif
0 commit comments