mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
* win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
when handling a EXIT_PROCESS_DEBUG_EVENT.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2009-01-14 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
|
* win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
|
||||||
|
when handling a EXIT_PROCESS_DEBUG_EVENT.
|
||||||
|
|
||||||
2009-01-06 Joel Brobecker <brobecker@adacore.com>
|
2009-01-06 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* gdbreplay.c (gdbreplay_version): Update copyright year.
|
* gdbreplay.c (gdbreplay_version): Update copyright year.
|
||||||
|
@ -1453,6 +1453,7 @@ get_child_debug_event (struct target_waitstatus *ourstatus)
|
|||||||
(unsigned) current_event.dwThreadId));
|
(unsigned) current_event.dwThreadId));
|
||||||
ourstatus->kind = TARGET_WAITKIND_EXITED;
|
ourstatus->kind = TARGET_WAITKIND_EXITED;
|
||||||
ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
|
ourstatus->value.integer = current_event.u.ExitProcess.dwExitCode;
|
||||||
|
child_continue (DBG_CONTINUE, -1);
|
||||||
CloseHandle (current_process_handle);
|
CloseHandle (current_process_handle);
|
||||||
current_process_handle = NULL;
|
current_process_handle = NULL;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user