aboutsummaryrefslogtreecommitdiff
path: root/gdb
AgeCommit message (Collapse)AuthorFilesLines
2002-03-01Add FIXME explaining include problem.Andrew Cagney17-30/+203
2002-03-01Move JTC to to past maintainers.Andrew Cagney2-3/+6
2002-03-012002-02-28 Michael Chastain <mec@shout.net>Michael Chastain2-1/+5
* MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
2002-03-01*** empty log message ***gdbadmin1-1/+1
2002-02-28Oops, fix date in changelogDaniel Jacobowitz1-1/+1
2002-02-282002-02-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz7-2/+249
* gdbserver/linux-s390-low.c: New file. * regformats/reg-s390.dat: New file. * regformats/reg-s390x.dat: New file. * gdbserver/configure.srv: Add S/390. * gdbserver/Makefile.in: Add S/390. * configure.tgt: Enable gdbserver for S/390.
2002-02-28 * go32-nat.c (_initialize_go32_nat): Don't use periods in theEli Zaretskii2-1/+7
first line of the doc string for "info dos", except at the end of the sentence, since the short help stops at the first period.
2002-02-28 * dwarf2read.c (dwarf_cfi_name): Add new codes.Jason Merrill2-0/+26
2002-02-28*** empty log message ***gdbadmin1-1/+1
2002-02-27 2002-02-27 Fred Fish <fnf@redhat.com>Fred Fish2-1/+6
* blockframe.c (generic_fix_call_dummy): Fix obvious typo in comment (dumy -> dummy).
2002-02-27 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.Peter Schauer2-1/+8
2002-02-272002-02-27 Rodney Brown <rbrown64@csc.com.au>Rodney Brown2-0/+6
* utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
2002-02-272002-02-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz22-24/+925
* gdbserver/acconfig.h: New file. * gdbserver/i387-fp.c: New file. * gdbserver/i387-fp.h: New file. * gdbserver/linux-x86-64.c: New file. * regformats/reg-x86-64.dat: New file. * configure.tgt: Add x86_64-*-linux* gdbserver support. & gdbserver/configure.srv: Add x86_64-*-linux* and regset support. * gdbserver/configure.in: Add support for regsets. * gdbserver/config.in: Regenerate. * gdbserver/configure: Regenerate. * gdbserver/Makefile.in: Likewise. Add $(linux_low_h). * gdbserver/linux-low.h: New file. * gdbserver/linux-low.c: Include "linux-low.h". Add support for regsets. * gdbserver/linux-arm-low.c: Include "linux-low.h". * gdbserver/linux-ia64-low.c: Include "linux-low.h". * gdbserver/linux-m68k-low.c: Include "linux-low.h". * gdbserver/linux-mips-low.c: Include "linux-low.h". * gdbserver/linux-ppc-low.c: Include "linux-low.h". * gdbserver/linux-sh-low.c: Include "linux-low.h". * gdbserver/linux-i386-low.c: Include "linux-low.h". Include "i387-fp.h". Add PTRACE_GETREGS and friends. * gdbserver/regcache.c (supply_register): New function. (supply_register_by_name): New function. (collect_register): New function. (collect_register_by_name): New function.
2002-02-272002-02-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2-3/+9
* gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER. (config.status): Add configure.srv dependency. (server_h): Add config.h dependency.
2002-02-272002-02-27 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz4-2/+56
* regformats/reg-i386-linux.dat: New file, with $orig_eax. * gdbserver/Makefile.in: Add rules for reg-i386-linux.o. * gdbserver/configure.srv: Change i386-*-linux* to use reg-i386-linux.o.
2002-02-27Update copyright. re-indent.Andrew Cagney2-20/+33
2002-02-27* x86-64-tdep.c (value.h): Delete.Andrew Cagney2-35/+55
(gdb_assert.h): Include. (x86_64_register_convert_to_virtual, x86_64_register_convert_to_raw ): Add check which lets only floating-point values to be converted. (value_push): Delete. (x86_64_push_arguments): Order of arguments pushed on stack fixed. (i386_gdbarch_init): Number of register_bytes fixed.
2002-02-27* MAINTAINERS: Add x86-64 target.Andrew Cagney2-0/+7
2002-02-27* memattr.c (mem_command): Eliminate ``true'' and ``false''.Andrew Cagney7-15/+25
* osfsolib.c (solib_map_sections): Ditto. * irix5-nat.c (solib_map_sections): Ditto. * corelow.c (gdb_check_format): Ditto. * symfile.c (symfile_bfd_open): Ditto. * solib.c (solib_map_sections): Ditto. Partially fix PR gdb/354.
2002-02-27* remote.c (_initialize_remote): By default, disable ``e'' andAndrew Cagney2-0/+13
``E'' step out-of-range packets.
2002-02-27*** empty log message ***gdbadmin1-1/+1
2002-02-26 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define asAndreas Schwab3-31/+101
m68k_linux_frame_saved_pc. (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of in_sigtramp. (SIGCONTEXT_PC_OFFSET): Remove. * m68klinux-nat.c (m68k_linux_frame_saved_pc, m68k_linux_sigtramp_saved_pc): New functions. (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define. (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h. (UCONTEXT_PC_OFFSET): Define. (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both non-RT and RT signal trampolines.
2002-02-26* config/arm/tm-embed.h (TARGET_UPAGES): Delete.Richard Earnshaw2-12/+6
(TARGET_NBPG, STACK_END_ADDR): Delete (VARIABLES_INSIDE_BLOCK): Delete.
2002-02-26* utils.c (perror_with_name): Make string parameter constant.Andrew Cagney3-6/+15
(print_sys_errmsg): Ditto. (query): Ditto. * defs.h (perror_with_name): Update. (print_sys_errmsg): Update. (query): Update.
2002-02-262002-02-25 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz2-1/+6
From Eliot Dresselhaus <eliot@ayrnetworks.com>: * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
2002-02-26*** empty log message ***gdbadmin1-1/+1
2002-02-25 * rs6000-nat.c (set_host_arch): Do not switch to a new architecturePeter Schauer3-2/+28
if it already matches the current architecture from the exec file. Include arch-utils.h for gdbarch_info_init prototype. * Makefile.in (rs6000-nat.o): Update dependencies.
2002-02-25Update for the next release.Eli Zaretskii1-13/+9
2002-02-25Add NM and CFLAGS to the exports.Eli Zaretskii2-1/+8
2002-02-25* Makefile.in (gdb.info): Add explicit path to gdb.texinfo.Andrew Cagney2-3/+7
Remove reference to 3.12.
2002-02-252002-02-24 Daniel Jacobowitz <drow@mvista.com>Daniel Jacobowitz6-86/+117
* gdbserver/configure.srv: New file. * gdbserver/configure.in: Use configure.srv instead of the host/target makefile fragments. Set GDBSERVER_DEPFILES from it. * gdbserver/configure: Regenerated. * gdbserver/terminal.h: New file. * gdbserver/Makefile.in: Update for configure changes. Remove more unneeded include paths.
2002-02-25Fix PR gdb/287. From wiz at danbala. Then->than and typos.Andrew Cagney4-2/+14
2002-02-25*** empty log message ***gdbadmin1-1/+1
2002-02-24s/Linux/.../Andrew Cagney25-67/+107
Fix PR gdb/378.
2002-02-24s/Linux/.../Andrew Cagney10-69/+86
Fix PR gdb/378.
2002-02-24s/Linux/.../Andrew Cagney8-42/+49
Fix PR gdb/378.
2002-02-24* lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''Andrew Cagney5-34/+45
with either ``GNU/Linux'' or ``Linux kernel''. Fix PR gdb/378.
2002-02-242002-02-24 Michael Chastain <mec@shout.net>Michael Chastain2-1/+9
* gdb.threads/pthreads.c (thread1): Add a return statement. (thread2): Likewise. (foo): Likewise.
2002-02-24* gdbint.texinfo: Include fdl.texi.Andrew Cagney5-6/+437
(Top): Add GNU Free Documentation License. * Makefile.in (SFILES_INCLUDED): Add gpl.texi. (gdbint.dvi, gdbint.pdf, gdbint.info): Add dependency on fdl.texi. (gdbint_toc.html): Add dependency on gdb-cfg.texi and fdl.texi. (gdbint.info): Add srcdir to include path. * gdb.texinfo: Include gpl.texi. (Top): Add Copying. * gpl.texi: New file.
2002-02-24Zap lin-thread.cAndrew Cagney3-2045/+6
2002-02-24* ocd.c (ocd_open): Do not try to open the "ocd" device.Andrew Cagney3-26/+8
* serial.c (serial_open): Delete check for "ocd". Fix PR gdb/349.
2002-02-24* Makefile.in (linux-thread.o): Delete target.Andrew Cagney3-1762/+3
* linux-thread.c: Delete file.
2002-02-24* config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak otherAndrew Cagney2-2/+6
renamed SH files to be consistent.
2002-02-24s/free/xfree/Andrew Cagney2-1/+5
2002-02-242002-02-23 Michael Chastain <mec@shout.net>Michael Chastain2-0/+7
* gdb.threads/linux-dp.c (philosopher): Add a return statement to placate gcc.
2002-02-24*** empty log message ***gdbadmin1-1/+1
2002-02-23* arm-linux-tdep.c (arm_linux_init_abi): RegisterRichard Earnshaw3-13/+17
IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old definition with undef, since we don't want the sysvr4 definition. (SKIP_TRAMPOLINE_CODE): Likewise.
2002-02-23* configure.in: (AC_CHECK_FUNCS) Added test forAndrew Cagney5-5/+20
canonicalize_file_name Regenerated. * config.in, configure: Regenerated. * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is defined use canonicalize_file_name.
2002-02-232002-02-23 Michael Chastain <mec@shout.net>Michael Chastain2-1/+4
* MAINTAINERS: Remove Michael Chastain from "paper trail" list.
2002-02-23Doc fix.Jim Blandy1-1/+1