diff options
author | Aleksandar Ristovski <aristovski@qnx.com> | 2008-06-05 19:21:55 +0000 |
---|---|---|
committer | Aleksandar Ristovski <aristovski@qnx.com> | 2008-06-05 19:21:55 +0000 |
commit | 2e618c13af17f36d0f0173786d49abea7308dc24 (patch) | |
tree | d25c6e97d0ee183dcba1b54d3f2d0ec0679188dc /gdb/ChangeLog | |
parent | 8a34ac3f587db129417fd57104477cd186b666c8 (diff) | |
download | gdb-2e618c13af17f36d0f0173786d49abea7308dc24.zip gdb-2e618c13af17f36d0f0173786d49abea7308dc24.tar.gz gdb-2e618c13af17f36d0f0173786d49abea7308dc24.tar.bz2 |
* bcache.c (bcache_data): Call deprecated_bcache_added function.
(deprecated_bcache_added): New function name. Body of function
bcache_data is used here with the addition of 'added' argument.
* bcache.h (deprecated_bcache_added): New function.
* symfile.c (add_psymbol_to_bcache): New helper function, takes part of
work from add_psymbol_to_list - initialises partial symbol and stashes
it in objfile's cache.
(append_psymbol_to_list): New helper function, takes other part of
work from add_psymbol_to_list - adds partial symbol to the given list.
(add_psymbol_to_list): Call helper functions instead of doing work
here. If adding to global list, do not duplicate partial symbols in the
partial symtab.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e8c30e6..0750025 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,20 @@ 2008-06-05 Aleksandar Ristovski <aristovski@qnx.com> + * bcache.c (bcache_data): Call deprecated_bcache_added function. + (deprecated_bcache_added): New function name. Body of function + bcache_data is used here with the addition of 'added' argument. + * bcache.h (deprecated_bcache_added): New function. + * symfile.c (add_psymbol_to_bcache): New helper function, takes part of + work from add_psymbol_to_list - initialises partial symbol and stashes + it in objfile's cache. + (append_psymbol_to_list): New helper function, takes other part of + work from add_psymbol_to_list - adds partial symbol to the given list. + (add_psymbol_to_list): Call helper functions instead of doing work + here. If adding to global list, do not duplicate partial symbols in the + partial symtab. + +2008-06-05 Aleksandar Ristovski <aristovski@qnx.com> + * breakpoint.c (print_exception_catchpoint): Put 'exception' back to 'exception caught|thrown' message. |