old-cross-binutils/gdb/testsuite/gdb.base
Sergio Durigan Junior df8411da08 Implement support for checking /proc/PID/coredump_filter
This patch, as the subject says, extends GDB so that it is able to use
the contents of the file /proc/PID/coredump_filter when generating a
corefile.  This file contains a bit mask that is a representation of
the different types of memory mappings in the Linux kernel; the user
can choose to dump or not dump a certain type of memory mapping by
enabling/disabling the respective bit in the bit mask.  Currently,
here is what is supported:

  bit 0  Dump anonymous private mappings.
  bit 1  Dump anonymous shared mappings.
  bit 2  Dump file-backed private mappings.
  bit 3  Dump file-backed shared mappings.
  bit 4 (since Linux 2.6.24)
         Dump ELF headers.
  bit 5 (since Linux 2.6.28)
         Dump private huge pages.
  bit 6 (since Linux 2.6.28)
         Dump shared huge pages.

(This table has been taken from core(5), but you can also read about it
on Documentation/filesystems/proc.txt inside the Linux kernel source
tree).

The default value for this file, used by the Linux kernel, is 0x33,
which means that bits 0, 1, 4 and 5 are enabled.  This is also the
default for GDB implemented in this patch, FWIW.

Well, reading the file is obviously trivial.  The hard part, mind you,
is how to determine the types of the memory mappings.  For that, I
extended the code of gdb/linux-tdep.c:linux_find_memory_regions_full and
made it rely *much more* on the information gathered from
/proc/<PID>/smaps.  This file contains a "verbose dump" of the
inferior's memory mappings, and we were not using as much information as
we could from it.  If you want to read more about this file, take a look
at the proc(5) manpage (I will also write a blog post soon about
everything I had to learn to get this patch done, and when I it is ready
I will post it here).

With Oleg Nesterov's help, we could improve the current algorithm for
determining whether a memory mapping is anonymous/file-backed,
private/shared.  GDB now also respects the MADV_DONTDUMP flag and does
not dump the memory mapping marked as so, and will always dump
"[vsyscall]" or "[vdso]" mappings (just like the Linux kernel).

In a nutshell, what the new code is doing is:

- If the mapping is associated to a file whose name ends with
  " (deleted)", or if the file is "/dev/zero", or if it is "/SYSV%08x"
  (shared memory), or if there is no file associated with it, or if
  the AnonHugePages: or the Anonymous: fields in the /proc/PID/smaps
  have contents, then GDB considers this mapping to be anonymous.
  There is a special case in this, though: if the memory mapping is a
  file-backed one, but *also* contains "Anonymous:" or
  "AnonHugePages:" pages, then GDB considers this mapping to be *both*
  anonymous and file-backed, just like the Linux kernel does.  What
  that means is simple: this mapping will be dumped if the user
  requested anonymous mappings *or* if the user requested file-backed
  mappings to be present in the corefile.

  It is worth mentioning that, from all those checks described above,
  the most fragile is the one to see if the file name ends with
  " (deleted)".  This does not necessarily mean that the mapping is
  anonymous, because the deleted file associated with the mapping may
  have been a hard link to another file, for example.  The Linux
  kernel checks to see if "i_nlink == 0", but GDB cannot easily do
  this check (as it has been discussed, GDB would need to run as root,
  and would need to check the contents of the /proc/PID/map_files/
  directory in order to determine whether the deleted was a hardlink
  or not).  Therefore, we made a compromise here, and we assume that
  if the file name ends with " (deleted)", then the mapping is indeed
  anonymous.  FWIW, this is something the Linux kernel could do
  better: expose this information in a more direct way.

- If we see the flag "sh" in the VmFlags: field (in /proc/PID/smaps),
  then certainly the memory mapping is shared (VM_SHARED).  If we have
  access to the VmFlags, and we don't see the "sh" there, then
  certainly the mapping is private.  However, older Linux kernels (see
  the code for more details) do not have the VmFlags field; in that
  case, we use another heuristic: if we see 'p' in the permission
  flags, then we assume that the mapping is private, even though the
  presence of the 's' flag there would mean VM_MAYSHARE, which means
  the mapping could still be private.  This should work OK enough,
  however.

Finally, it is worth mentioning that I added a new command, 'set
use-coredump-filter on/off'.  When it is 'on', it will read the
coredump_filter' file (if it exists) and use its value; otherwise, it
will use the default value mentioned above (0x33) to decide which memory
mappings to dump.

gdb/ChangeLog:
2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
	    Jan Kratochvil  <jan.kratochvil@redhat.com>
	    Oleg Nesterov  <oleg@redhat.com>

	PR corefiles/16092
	* linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'.
	New enum identifying the various options of the coredump_filter
	file.
	(struct smaps_vmflags): New struct.
	(use_coredump_filter): New variable.
	(decode_vmflags): New function.
	(mapping_is_anonymous_p): Likewise.
	(dump_mapping_p): Likewise.
	(linux_find_memory_regions_full): New variables
	'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'.
	Removed variable 'modified'.  Read /proc/<PID>/smaps file; improve
	parsing of its information.  Implement memory mapping filtering
	based on its contents.
	(show_use_coredump_filter): New function.
	(_initialize_linux_tdep): New command 'set use-coredump-filter'.
	* NEWS: Mention the possibility of using the
	'/proc/PID/coredump_filter' file when generating a corefile.
	Mention new command 'set use-coredump-filter'.

gdb/doc/ChangeLog:
2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>

	PR corefiles/16092
	* gdb.texinfo (gcore): Mention new command 'set
	use-coredump-filter'.
	(set use-coredump-filter): Document new command.

gdb/testsuite/ChangeLog:
2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>

	PR corefiles/16092
	* gdb.base/coredump-filter.c: New file.
	* gdb.base/coredump-filter.exp: Likewise.
2015-03-31 19:32:34 -04:00
..
comp-dir/subdir
a2-run.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
advance.c
advance.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
alias.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
all-bin.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
all-types.c
annota-input-while-running.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
annota-input-while-running.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
annota1.c
annota1.exp watch_thread_num.exp and targets with fairer event reporting 2015-01-09 14:39:41 +00:00
annota3.c
annota3.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
anon.c
anon.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
args.c
args.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
argv0-symlink.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
argv0-symlink.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arithmet.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arrayidx.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arrayidx.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
assign.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
async-shell.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
async-shell.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
async.c
async.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-misread.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-misread.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-noexec.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-noexec.exp Skip two more attach tests when testing against stub-like targets 2015-01-15 10:59:57 -08:00
attach-twice.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-twice.exp Skip two more attach tests when testing against stub-like targets 2015-01-15 10:59:57 -08:00
attach-wait-input.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-wait-input.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach.c
attach.exp skip "attach" tests when testing against stub-like targets 2015-01-09 11:04:19 +00:00
attach2.c
auto-connect-native-target.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-connect-native-target.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-load-script Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-load.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-load.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auxv.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auxv.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
average.c
bang.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bar.c
batch-preserve-term-settings.c PR cli/17828: -batch -ex r breaks terminal 2015-01-14 11:51:06 +00:00
batch-preserve-term-settings.exp PR cli/17828: -batch -ex r breaks terminal 2015-01-14 11:51:06 +00:00
baz.c
bfp-test.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bfp-test.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bg-execution-repeat.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bg-execution-repeat.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bigcore.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bigcore.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bitfields.c
bitfields.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bitfields2.c
bitfields2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bitops.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bp-cmds-execution-x-script.c PR17525 - breakpoint commands not executed when program run from -x script 2015-01-14 12:34:12 +00:00
bp-cmds-execution-x-script.exp PR17525 - breakpoint commands not executed when program run from -x script 2015-01-14 12:34:12 +00:00
bp-cmds-execution-x-script.gdb PR17525 - breakpoint commands not executed when program run from -x script 2015-01-14 12:34:12 +00:00
bp-permanent.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bp-permanent.exp gdb.base/bp-permanent.exp: Tighten regex 2015-03-05 23:40:39 +00:00
branches.c
break-always.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-always.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-caller-line.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-caller-line.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-entry.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-idempotent.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-idempotent.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-inline.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-inline.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-interp-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-interp-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-interp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-main-file-remove-fail.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-main-file-remove-fail.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-on-linker-gcd-function.cc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-on-linker-gcd-function.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-probes-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-probes.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-probes.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-unload-file.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-unload-file.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
breakpoint-in-ro-region.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
breakpoint-in-ro-region.exp breakpoint-in-ro-region.exp: Support targets stopping in mid-line after "si" 2015-03-04 10:40:40 +01:00
breakpoint-shadow.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
breakpoint-shadow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-ar-st.c
call-ar-st.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-rt-st.c
call-rt-st.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-sc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-sc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-signal-resume.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-signals.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-strs.c
call-strs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callexit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callexit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callfuncs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callfuncs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-gdb-caused-signals.c Fix non executable stack handling when calling functions in the inferior. 2015-02-19 11:04:21 -05:00
catch-gdb-caused-signals.exp Fix non executable stack handling when calling functions in the inferior. 2015-02-19 11:04:21 -05:00
catch-load-so.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-load.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-load.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal-fork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal-fork.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-syscall.c Support catch syscall on aarch64 linux 2015-03-18 10:47:45 +00:00
catch-syscall.exp Support catch syscall on aarch64 linux 2015-03-18 10:47:45 +00:00
charset-malloc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
charset.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
charset.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
checkpoint.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
checkpoint.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
chng-syms.c
chng-syms.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code-expr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code_elim.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code_elim1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code_elim2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
commands.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
compare-sections.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
compare-sections.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
completion.exp Add max-completions parameter, and implement tab-completion limiting. 2015-01-31 15:07:22 -08:00
complex.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
complex.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
comprdebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cond-eval-mode.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cond-eval-mode.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cond-expr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
condbreak-call-false.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
condbreak-call-false.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
condbreak.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
consecutive-step-over.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
consecutive-step-over.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
consecutive.c
consecutive.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
constvars.c
constvars.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
continue-all-already-running.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
continue-all-already-running.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
coredump-filter.c Implement support for checking /proc/PID/coredump_filter 2015-03-31 19:32:34 -04:00
coredump-filter.exp Implement support for checking /proc/PID/coredump_filter 2015-03-31 19:32:34 -04:00
corefile.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
coremaker.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
coremaker2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj-f.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj-m.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj-v.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cursal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cursal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cvexpr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cvexpr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
d10v.ld
d10vovly.c
dbx.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dcache-line-read-error.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dcache-line-read-error.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
debug-expr.c
debug-expr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
default.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
define.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
del.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
del.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
detach.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dfp-exprs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dfp-test.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dfp-test.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disabled-location.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disabled-location.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disasm-end-cu-1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disasm-end-cu-2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disasm-end-cu.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disp-step-fork.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
disp-step-syscall.exp Tighten gdb.base/disp-step-syscall.exp 2015-03-18 19:28:08 +00:00
disp-step-vfork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
display.c
display.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dmsym.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dmsym.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dmsym_main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
double-prompt-target-event-error.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
double-prompt-target-event-error.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-bp-same-addr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-bp-same-addr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-detach.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-detach.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-next.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-next.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-non-stop.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-non-stop.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-pending.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-pending.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-pendshr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dtrace-probe.c Simple testsuite for DTrace USDT probes. 2015-02-17 16:41:16 +01:00
dtrace-probe.d Simple testsuite for DTrace USDT probes. 2015-02-17 16:41:16 +01:00
dtrace-probe.exp Simple testsuite for DTrace USDT probes. 2015-02-17 16:41:16 +01:00
dump.c
dump.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dup-sect.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dup-sect.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
duplicate-bp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
duplicate-bp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
echo.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
empty_exe.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ena-dis-br.exp "enable count" user input error handling (PR gdb/15678) 2015-02-06 10:27:01 -05:00
ending-run.c
ending-run.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enum_cond.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enum_cond.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enumval.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enumval.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
environ.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eu-strip-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eu-strip-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eval-avoid-side-effects.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eval-skip.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eval.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
exe-lock.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execd-prog.c
execl-update-breakpoints.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execl-update-breakpoints.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execution-termios.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execution-termios.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
exitsignal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
expand-psymtabs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
expand-psymtabs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
exprs.c
exprs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fileio.c
fileio.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
filesym.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
filesym.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find-unmapped.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find-unmapped.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
finish.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fixsection.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fixsection.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fixsectshr.c
float.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
float.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foll-exec.c
foll-exec.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foll-fork.c
foll-fork.exp Enable gdb.base/foll-fork.exp on OpenBSD 2015-03-04 14:53:14 +01:00
foll-vfork-exit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foll-vfork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foll-vfork.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foo.c
fortran-sym-case.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fortran-sym-case.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
frame-args.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
frame-args.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
freebpcmd.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
freebpcmd.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullname.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullname.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullpath-expand-func.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullpath-expand.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullpath-expand.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptrs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptrs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
funcargs.c
funcargs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-buffer-overflow.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-buffer-overflow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-pie.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-pie.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb-sigterm.c gdb.base/gdb-sigterm.exp: Fix spurious FAILs 2015-02-06 11:09:42 +01:00
gdb-sigterm.exp gdb.base/gdb-sigterm.exp: Fix spurious FAILs 2015-02-06 11:09:42 +01:00
gdb1056.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1090.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1090.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1250.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1250.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1555-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1555.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1555.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1821.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1821.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11530.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11530.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11531.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11531.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb_history
gdbindex-stabs-dwarf.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdbindex-stabs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdbindex-stabs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdbvars.c
gdbvars.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso-solib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso-solib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-debugdata.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-debugdata.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-ifunc-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-ifunc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-ifunc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu_vector.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu_vector.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
grbx.c
hashline1.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hashline2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hashline3.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-in-shr-unsupported-shr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-in-shr-unsupported.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-in-shr-unsupported.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-unmapped.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-unmapped.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
help.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-continue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-continue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-frame.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-frame.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
huge.c
huge.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ifelse.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
included.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
included.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
included.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
inferior-died.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
inferior-died.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infnan.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infnan.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-fun-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-fun.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-fun.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-macros.c
info-macros.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-os.c gdb.base/info-os.c: Include stdlib.h 2015-02-23 14:03:48 +00:00
info-os.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-proc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared-solib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared-solib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-target.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infoline.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infoline.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
int-type.c
interact.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interrupt-noterm.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interrupt-noterm.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interrupt.c Add "../lib/unbuffer_output.c" and use it in gdb.base/interrupt.c 2015-02-27 13:54:22 +00:00
interrupt.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-dlmain.c
jit-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-simple.c
jit-simple.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-so.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jump.c
jump.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
kill-after-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
kill-after-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
label.c
label.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
langs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
langs0.c
langs1.c
langs1.f Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
langs2.c
langs2.cxx
ldbl_e308.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ldbl_e308.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
line-symtabs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
line-symtabs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
line-symtabs.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
lineinc.c
lineinc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
list.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
list0.c
list0.h
list1.c
logical.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
long_long.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
long_long.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longest-types.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longest-types.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longjmp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longjmp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
m32r.ld
m32rovly.c
macscp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp Move vptr_{fieldno,basetype} out of main_type, and update everything accordingly. 2015-01-31 21:40:57 -08:00
Makefile.in
memattr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
memattr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
mips_pro.c
mips_pro.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
miscexprs.c
miscexprs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
morestack.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
morestack.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
moribund-step.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
multi-forks.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
multi-forks.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
multi-line-starts-subshell.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nextoverexit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nextoverexit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nodebug.c
nodebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nofield.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nofield.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
noreturn-finish.c Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
noreturn-finish.exp Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
noreturn-return.c Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
noreturn-return.exp Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
normal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nostdlib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nostdlib.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
opaque.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
opaque0.c
opaque1.c
overlays.c
overlays.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ovlymgr.c
ovlymgr.h
page.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-after-ctrl-c-running.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-after-ctrl-c-running.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-bg-execution.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-bg-execution.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-execution-startup.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-execution-startup.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-inferior-exit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-inferior-exit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pc-fp.c
pc-fp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pending.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pending.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pendshr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
permissions.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pi.txt
pie-execl.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pie-execl.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pointers.c
pointers.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pr10179-a.c
pr10179-b.c
pr10179.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pr11022.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pr11022.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prelink-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prelink.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prelink.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var-lib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var-lib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-symbol-loading-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-symbol-loading-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-symbol-loading.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
printcmds.c
printcmds.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue-include.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue-include.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue-include.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
psymtab.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ptr-typedef.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ptype.c
ptype.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ptype1.c
radix.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
random-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
random-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
randomize.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
randomize.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
range-stepping.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
range-stepping.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline-ask.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline-ask.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline-ask.inputrc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
realname-expand-real.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
realname-expand.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
realname-expand.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
recpar.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
recpar.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
recurse.c
recurse.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relational.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relativedebug.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relativedebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relocate.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relocate.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
remote.c
remote.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
remotetimeout.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
reread.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
reread1.c
reread2.c
restore.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
restore.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return-nodebug.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return-nodebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return-nodebug1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return.c
return.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return2.c
return2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
run.c
save-bp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
save-bp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
savedregs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
savedregs.exp Relax pattern to match the output of "info frame" in gdb.base/savedregs.exp 2015-03-26 08:16:20 +00:00
scope.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
scope0.c
scope1.c
sect-cmd.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
segv.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sep-proc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sep.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sep.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepdebug.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepdebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepdebug2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepsymtab.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepsymtab.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
set-lang-auto.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
set-noassign.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
setshow.c
setshow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
setvar.c
setvar.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
shell.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
shlib-call.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
shreloc1.c
shreloc2.c
sigall.c
sigall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigaltstack.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigaltstack.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigbpt.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigbpt.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigchld.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigchld.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-addr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-addr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-obj.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
siginfo-obj.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-thread.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
siginfo-thread.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signals.c
signals.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signest.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signest.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signull.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signull.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigrepeat.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigrepeat.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigstep.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigstep.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sizeof.c
sizeof.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
skip.c
skip.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
skip1.c
so-disc-shr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
so-impl-ld.c
so-impl-ld.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
so-indr-cl.c
so-indr-cl.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-corrupted.exp Fix gdb.base/solib-corrupted.exp after dtrace probes changes 2015-02-20 23:10:53 +00:00
solib-disc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-disc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-display-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-display-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-display.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-nodir.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-overlap-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-overlap-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-overlap.exp skip "attach" tests when testing against stub-like targets 2015-01-09 11:04:19 +00:00
solib-search-lib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search-lib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-symbol-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-symbol-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-symbol.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-weak.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-weak.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib.c
solib.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib1.c
solib2.c
source-dir.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-error.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-execution.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-execution.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-execution.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-nofile.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-test.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sss-bp-on-user-bp-2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sss-bp-on-user-bp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sss-bp-on-user-bp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stack-checking.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stack-checking.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stale-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stale-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stap-probe.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stap-probe.exp Move compute_probe_arg' and compile_probe_arg' to probe.c 2015-02-17 15:50:19 +01:00
start.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
start.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
statistics.exp Introduce gdb_interact in testsuite 2015-01-22 15:49:08 -05:00
step-break.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-break.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-bt.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-bt.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-line.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-line.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-line.inp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-resume-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-resume-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-sw-breakpoint-adjust-pc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-sw-breakpoint-adjust-pc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-symless.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-symless.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-test.c
step-test.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
store.c
store.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs.exp Fix print of value type in a corner case of finish 2015-02-26 10:58:00 -05:00
structs2.c
structs2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs3.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs3.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
subst.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sum.c
sym-file-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file-loader.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file-loader.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symbol-without-target_section.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symbol-without-target_section.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order-1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order-shlib-1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
term.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
term.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
testenv.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
testenv.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
trace-commands.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
tui-layout.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
twice.c
twice.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
type-opaque-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
type-opaque-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
type-opaque.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ui-redirect.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unload.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unload.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unloadshr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unloadshr2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
until-nodebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
until.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unwindonsignal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unwindonsignal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
valgrind-db-attach.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
valgrind-db-attach.exp Introduce gdb_interact in testsuite 2015-01-22 15:49:08 -05:00
valgrind-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
valgrind-infcall.exp Introduce gdb_interact in testsuite 2015-01-22 15:49:08 -05:00
value-double-free.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
value-double-free.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
varargs.c
varargs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vdso-warning.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vdso-warning.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vforked-prog.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-datatypes.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-datatypes.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-ptr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-ptr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-sideeffect.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-sideeffect.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-stub-define.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-stub.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-stub.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
volatile.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-bitfields.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-bitfields.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-non-mem.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-non-mem.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-read.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-read.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-vfork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-vfork.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch_thread_num.c watch_thread_num.exp and targets with fairer event reporting 2015-01-09 14:39:41 +00:00
watch_thread_num.exp watch_thread_num.exp and targets with fairer event reporting 2015-01-09 14:39:41 +00:00
watchpoint-cond-gone-stripped.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-cond-gone.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-cond-gone.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-delete.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-delete.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw-hit-once.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw-hit-once.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-reuse-slot.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-reuse-slot.exp watchpoint-reuse-slot.exp: skip setting HW breakpoints on some address 2015-03-16 17:27:02 +00:00
watchpoint-solib-shr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-solib.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-stops-at-right-insn.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-stops-at-right-insn.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint.c
watchpoint.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoints.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoints.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
wchar.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
wchar.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
weaklib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
weaklib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
whatis-exp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
whatis.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
whatis.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00