X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gdb%2FChangeLog;h=7bc35d1c37276a291156444134110fd62b0fe10d;hb=dadef93096fd397c3acf2078bcf6b526ff4e0da4;hp=aeba430163ecdcf2da534ecde841c8dfdaf85c72;hpb=3e3286a28ab29052f2169bfce01b3e770d589037;p=platform%2Fupstream%2Fbinutils.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index aeba430..7bc35d1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,80 @@ +2014-10-13 Doug Evans + + * python/py-objfile.c (objfpy_initialize): New function. + (objfpy_new, objfile_to_objfile_object): Call it. + * python/py-progspace.c (pspy_initialize): New function. + (pspy_new, pspace_to_pspace_object): Call it. + +2014-10-13 Miroslav Franc + Jan Kratochvil + + Fix "save breakpoints" for "catch" command. + * break-catch-sig.c (signal_catchpoint_print_recreate): Add trailing + newline. + +2014-10-12 Miroslav Franc + + Fix "save breakpoints" for "disable $bpnum" command. + * breakpoint.c (save_breakpoints): Add $bpnum for disable. + +2014-10-10 Pedro Alves + + * Makefile.in (ALL_TARGET_OBS): Remove mips-irix-tdep.o and solib-irix.o. + (ALLDEPFILES): Remove mips-irix-tdep.c and solib-irix.c. + (HFILES_NO_SRCDIR): Remove solib-irix.h. + * NEWS: Mention that support for mips-sgi-irix5* mips-sgi-irix6* + and been removed. + * config/mips/irix5.mh, config/mips/irix6.mh: Delete files. + * configure.ac: Remove references to IRIX. + * configure.host: Add *-*-irix* to the obsolete hosts section. + Remove all other references to irix. + * irix5-nat.c, mips-irix-tdep.c, solib-irix.c, solib-irix.h: + Delete files. + +2014-10-10 Ajit Agarwal + + * microblaze-tdep.c (microblaze_gdbarch_init): If the description + isn't valid, release the tdesc arch data and return NULL. + +2014-10-10 Pedro Alves + + * linux-tdep.c: Include observer.h. + (linux_inferior_data): New global. + (struct linux_info): New structure. + (invalidate_linux_cache_inf, linux_inferior_data_cleanup) + (get_linux_inferior_data): New functions. + (linux_vsyscall_range): Rename to ... + (linux_vsyscall_range_raw): ... this. + (linux_vsyscall_range): New function; handles caching. + (_initialize_linux_tdep): Register linux_inferior_data. Install + inferior_exit and inferior_appeared observers. + +2014-10-10 Jan Kratochvil + Pedro Alves + + PR symtab/14466 + * solib-svr4.c (svr4_read_so_list): Rename to ... + (svr4_current_sos_1): ... this and change the function comment. + (svr4_current_sos): New function. + +2014-10-10 Pedro Alves + + * arch-utils.c (default_vsyscall_range): New function. + * arch-utils.h (default_vsyscall_range): New declaration. + * gdbarch.sh (vsyscall_range): New hook. + * gdbarch.h, gdbarch.c: Regenerate. + * linux-tdep.c (linux_vsyscall_range): New function. + (linux_init_abi): Install linux_vsyscall_range as + vsyscall_range gdbarch hook. + * memrange.c (address_in_mem_range): New function. + * memrange.h (address_in_mem_range): New declaration. + * symfile-mem.c (find_vdso_size): Delete function. + (add_vsyscall_page): Use gdbarch_vsyscall_range. + +2014-10-10 Pedro Alves + + * infrun.c (normal_stop): Fix typo in comment. + 2014-10-09 Sergio Durigan Junior PR tdep/9390