diff options
author | Joel Brobecker <brobecker@gnat.com> | 2010-01-10 06:43:01 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2010-01-10 06:43:01 +0000 |
commit | 6e0e59772a9b62f9281ebecf51d49c2b2b2565f7 (patch) | |
tree | 466a4bf80762f107117d1df60dd2efc7ef8bd7d9 /gdb | |
parent | ffe7cfdf3170254a6bc8c5f5e9f946005b923165 (diff) | |
download | gdb-6e0e59772a9b62f9281ebecf51d49c2b2b2565f7.zip gdb-6e0e59772a9b62f9281ebecf51d49c2b2b2565f7.tar.gz gdb-6e0e59772a9b62f9281ebecf51d49c2b2b2565f7.tar.bz2 |
Document the improvements made to the mips-irix port.
* NEWS: Document the improvements made to the mips-irix port.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/NEWS | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 423fc5b..0bb0c99 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-01-10 Joel Brobecker <brobecker@adacore.com> + + * NEWS: Document the improvements made to the mips-irix port. + 2010-01-09 Joel Brobecker <brobecker@adacore.com> Fix the documentation of valprint.c:value_print. @@ -166,6 +166,24 @@ qTfP, qTsP Process record now works correctly with hardware watchpoints. +Multiple bug fixes have been made to the mips-irix port, making it +much more reliable. In particular: + - Debugging threaded applications is now possible again. Previously, + GDB would hang while starting the program, or while waiting for + the program to stop at a breakpoint. + - Attaching to a running process no longer hangs. + - An error occurring while loading a core file has been fixed. + - Changing the value of the PC register now works again. This fixes + problems observed when using the "jump" command, or when calling + a function from GDB, or even when assigning a new value to $pc. + - With the "finish" and "return" commands, the return value for functions + returning a small array is now correctly printed. + - It is now possible to break on shared library code which gets executed + during a shared library init phase (code executed while executing + their .init section). Previously, the breakpoint would have no effect. + - GDB is now able to backtrace through the signal handler for + non-threaded programs. + *** Changes in GDB 7.0 * GDB now has an interface for JIT compilation. Applications that |