diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2000-04-21 03:04:35 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2000-04-21 03:04:35 +0000 |
commit | 61c37cee5da9d08b107ec331b1080f1982f5afa1 (patch) | |
tree | dde699982332a32867ccea6dff4a7ae8ad08988e /gdb/ChangeLog | |
parent | 8a892701f5df8fbd3470b93dca78caa6113ebaa9 (diff) | |
download | gdb-61c37cee5da9d08b107ec331b1080f1982f5afa1.zip gdb-61c37cee5da9d08b107ec331b1080f1982f5afa1.tar.gz gdb-61c37cee5da9d08b107ec331b1080f1982f5afa1.tar.bz2 |
* wince-stub.c (FREE): New macro.
(mempool): Just free any buffer prior to reuse. Don't bother with realloc.
(flag_single_step): New function.
(skip_message): Detect "helpful" Windows CE messages and skip sending them to
the host.
(wait_for_debug_event): Use skip_message to avoid sending debug messages to the
host.
(dispatch): Prelimary implementation of single step detection.
* wince.c: Rework SH single stepping code to be more consistent with other
wince targets.
(handle_output_debug_string): Allow first chance exceptions to come through
since they seem to be all that we get on some versions of Windows CE.
(check_for_step): New function, conditionally compiled based on target.
(regptr): Delete obsolete function.
(handle_exception): Detect illegal instructions.
(get_child_debug_event): Return success only if event code matches target.
(child_create_inferior): Reflect change to get_child_debug_event arguments.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index efb8921..0f1f773 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,29 @@ 2000-04-20 Christopher Faylor <cgf@cygnus.com> + * wince-stub.c (FREE): New macro. + (mempool): Just free any buffer prior to reuse. Don't bother with + realloc. + (flag_single_step): New function. + (skip_message): Detect "helpful" Windows CE messages and skip sending + them to the host. + (wait_for_debug_event): Use skip_message to avoid sending debug + messages to the host. + (dispatch): Prelimary implementation of single step detection. + * wince.c: Rework SH single stepping code to be more consistent with + other wince targets. + (handle_output_debug_string): Allow first chance exceptions to come + through since they seem to be all that we get on some versions of + Windows CE. + (check_for_step): New function, conditionally compiled based on target. + (regptr): Delete obsolete function. + (handle_exception): Detect illegal instructions. + (get_child_debug_event): Return success only if event code matches + target. + (child_create_inferior): Reflect change to get_child_debug_event + arguments. + +2000-04-20 Christopher Faylor <cgf@cygnus.com> + * win32-nat.c (thread_rec): Be more defensive about suspending already suspended threads. (safe_symbol_file_add_stub): New function. |