Skip to content

Commit 7bb035f

Browse files
author
Mihail Abakumov
committed
Removed dump file
1 parent 4a756d8 commit 7bb035f

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

include/exec/windbgstub.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#define WINDBGSTUB_H
33

44
// windbg.exe -b -k com:pipe,baud=115200,port=\\.\pipe\windbg,resets=0
5-
// qemu.exe -windbg pipe:windbg_chr
5+
// qemu.exe -windbg pipe:windbg
66

7-
#define WINDBG_DEBUG_ON true
7+
#define WINDBG_DEBUG_ON false
88

99
void windbg_debug_parser_hook(bool is_kernel, const uint8_t *buf, int len);
1010
void windbg_start_sync(void);

windbgstub.c

+11-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ typedef struct WindbgState {
5050
uint32_t data_packet_id;
5151
bool is_loaded;
5252

53+
#if (WINDBG_DEBUG_ON)
5354
FILE *dump_file;
55+
#endif
5456
} WindbgState;
5557

5658
static WindbgState *windbg_state = NULL;
@@ -61,6 +63,7 @@ static WindbgState *windbg_state = NULL;
6163

6264
void windbg_dump(const char *fmt, ...)
6365
{
66+
#if (WINDBG_DEBUG_ON)
6467
va_list ap;
6568

6669
va_start(ap, fmt);
@@ -69,6 +72,7 @@ void windbg_dump(const char *fmt, ...)
6972
fflush(windbg_state->dump_file);
7073
}
7174
va_end(ap);
75+
#endif
7276
}
7377

7478
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)
119123

120124
static void windbg_vm_stop(void)
121125
{
126+
CPUState *cpu = qemu_get_cpu(0);
122127
vm_stop(RUN_STATE_PAUSED);
123-
windbg_bp_handler(qemu_get_cpu(0));
128+
cpu_single_step(cpu, 0);
129+
windbg_bp_handler(cpu);
124130
}
125131

126132
static void windbg_process_manipulate_packet(ParsingContext *ctx)
@@ -553,8 +559,9 @@ void windbg_start_sync(void)
553559
static void windbg_exit(void)
554560
{
555561
windbg_on_exit();
556-
562+
#if (WINDBG_DEBUG_ON)
557563
FCLOSE(windbg_state->dump_file);
564+
#endif
558565
#if (ENABLE_PARSER)
559566
FCLOSE(parsed_packets);
560567
FCLOSE(parsed_api);
@@ -588,9 +595,9 @@ int windbg_start(const char *device)
588595
qemu_chr_add_handlers(windbg_state->chr, windbg_chr_can_receive,
589596
windbg_chr_receive, NULL, NULL);
590597

591-
// open dump file
598+
#if (WINDBG_DEBUG_ON)
592599
windbg_state->dump_file = fopen(WINDBG_DIR "dump.txt", "wb");
593-
600+
#endif
594601
#if (ENABLE_PARSER)
595602
windbg_debug_open_files();
596603
#endif

0 commit comments

Comments
 (0)