old-cross-binutils/gdb/testsuite/gdb.base
Pedro Alves f303dbd60d Fix PR threads/19422 - show which thread caused stop
This commit changes GDB like this:

 - Program received signal SIGINT, Interrupt.
 + Thread 1 "main" received signal SIGINT, Interrupt.

 - Breakpoint 1 at 0x40087a: file threads.c, line 87.
 + Thread 3 "bar" hit Breakpoint 1 at 0x40087a: file threads.c, line 87.

 ... once the program goes multi-threaded.  Until GDB sees a second
thread spawn, the output is still the same as before, per the
discussion back in 2012:

  https://www.sourceware.org/ml/gdb/2012-11/msg00010.html

This helps non-stop mode, where you can't easily tell which thread hit
a breakpoint or received a signal:

 (gdb) info threads
   Id   Target Id         Frame
 * 1    Thread 0x7ffff7fc1740 (LWP 19362) "main" (running)
   2    Thread 0x7ffff7fc0700 (LWP 19366) "foo" (running)
   3    Thread 0x7ffff77bf700 (LWP 19367) "bar" (running)
 (gdb)
 Program received signal SIGUSR1, User defined signal 1.
 0x0000003616a09237 in pthread_join (threadid=140737353877248, thread_return=0x7fffffffd5b8) at pthread_join.c:92
 92          lll_wait_tid (pd->tid);
 (gdb) b threads.c:87
 Breakpoint 1 at 0x40087a: file threads.c, line 87.
 (gdb)
 Breakpoint 1, thread_function1 (arg=0x1) at threads.c:87
 87              usleep (1);  /* Loop increment.  */

The best the user can do is run "info threads" and try to figure
things out.

It actually also affects all-stop mode, in case of "handle SIG print
nostop":

...
  Program received signal SIGUSR1, User defined signal 1.

  Program received signal SIGUSR1, User defined signal 1.

  Program received signal SIGUSR1, User defined signal 1.

  Program received signal SIGUSR1, User defined signal 1.
...

The above doesn't give any clue that these were different threads
getting the SIGUSR1 signal.

I initially thought of lowercasing "breakpoint" in

  "Thread 3 hit Breakpoint 1"

but then after trying it I realized that leaving "Breakpoint"
uppercase helps the eye quickly find the relevant information.  It's
also easier to implement not showing anything about threads until the
program goes multi-threaded this way.

Here's a larger example session in non-stop mode:

  (gdb) c -a&
  Continuing.
  (gdb) interrupt -a
  (gdb)
  Thread 1 "main" stopped.
  0x0000003616a09237 in pthread_join (threadid=140737353877248, thread_return=0x7fffffffd5b8) at pthread_join.c:92
  92          lll_wait_tid (pd->tid);

  Thread 2 "foo" stopped.
  0x0000003615ebc6ed in nanosleep () at ../sysdeps/unix/syscall-template.S:81
  81      T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)

  Thread 3 "bar" stopped.
  0x0000003615ebc6ed in nanosleep () at ../sysdeps/unix/syscall-template.S:81
  81      T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)
  b threads.c:87
  Breakpoint 4 at 0x40087a: file threads.c, line 87.
  (gdb) b threads.c:67
  Breakpoint 5 at 0x400811: file threads.c, line 67.
  (gdb) c -a&
  Continuing.
  (gdb)
  Thread 3 "bar" hit Breakpoint 4, thread_function1 (arg=0x1) at threads.c:87
  87              usleep (1);  /* Loop increment.  */

  Thread 2 "foo" hit Breakpoint 5, thread_function0 (arg=0x0) at threads.c:68
  68              (*myp) ++;
  info threads
    Id   Target Id         Frame
  * 1  Thread 0x7ffff7fc1740 (LWP 31957) "main" (running)
    2  Thread 0x7ffff7fc0700 (LWP 31961) "foo" thread_function0 (arg=0x0) at threads.c:68
    3  Thread 0x7ffff77bf700 (LWP 31962) "bar" thread_function1 (arg=0x1) at threads.c:87
  (gdb) shell kill -SIGINT 31957
  (gdb)
  Thread 1 "main" received signal SIGINT, Interrupt.
  0x0000003616a09237 in pthread_join (threadid=140737353877248, thread_return=0x7fffffffd5b8) at pthread_join.c:92
  92          lll_wait_tid (pd->tid);
  info threads
    Id   Target Id         Frame
  * 1  Thread 0x7ffff7fc1740 (LWP 31957) "main" 0x0000003616a09237 in pthread_join (threadid=140737353877248, thread_return=0x7fffffffd5b8) at pthread_join.c:92
    2  Thread 0x7ffff7fc0700 (LWP 31961) "foo" thread_function0 (arg=0x0) at threads.c:68
    3  Thread 0x7ffff77bf700 (LWP 31962) "bar" thread_function1 (arg=0x1) at threads.c:87
  (gdb) t 2
  [Switching to thread 2, Thread 0x7ffff7fc0700 (LWP 31961)]
  #0  thread_function0 (arg=0x0) at threads.c:68
  68              (*myp) ++;
  (gdb) catch syscall
  Catchpoint 6 (any syscall)
  (gdb) c&
  Continuing.
  (gdb)
  Thread 2 "foo" hit Catchpoint 6 (call to syscall nanosleep), 0x0000003615ebc6ed in nanosleep () at ../sysdeps/unix/syscall-template.S:81
  81      T_PSEUDO (SYSCALL_SYMBOL, SYSCALL_NAME, SYSCALL_NARGS)

I'll work on documentation next if this looks agreeable.

This patch applies on top of the star wildcards thread IDs series:

  https://sourceware.org/ml/gdb-patches/2016-01/msg00291.html

For convenience, I've pushed this to the
users/palves/show-which-thread-caused-stop branch.

gdb/doc/ChangeLog:
2016-01-18  Pedro Alves  <palves@redhat.com>

	* gdb.texinfo (Threads): Mention that GDB displays the ID and name
	of the thread that hit a breakpoint or received a signal.

gdb/ChangeLog:
2016-01-18  Pedro Alves  <palves@redhat.com>

	* NEWS: Mention that GDB now displays the ID and name of the
	thread that hit a breakpoint or received a signal.
	* break-catch-sig.c (signal_catchpoint_print_it): Use
	maybe_print_thread_hit_breakpoint.
	* break-catch-syscall.c (print_it_catch_syscall): Likewise.
	* break-catch-throw.c (print_it_exception_catchpoint): Likewise.
	* breakpoint.c (maybe_print_thread_hit_breakpoint): New function.
	(print_it_catch_fork, print_it_catch_vfork, print_it_catch_solib)
	(print_it_catch_exec, print_it_ranged_breakpoint)
	(print_it_watchpoint, print_it_masked_watchpoint, bkpt_print_it):
	Use maybe_print_thread_hit_breakpoint.
	* breakpoint.h (maybe_print_thread_hit_breakpoint): Declare.
	* gdbthread.h (show_thread_that_caused_stop): Declare.
	* infrun.c (print_signal_received_reason): Print which thread
	received signal.
	* thread.c (show_thread_that_caused_stop): New function.

gdb/testsuite/ChangeLog:
2016-01-18  Pedro Alves  <palves@redhat.com>

	* gdb.base/async-shell.exp: Adjust expected output.
	* gdb.base/dprintf-non-stop.exp: Adjust expected output.
	* gdb.base/siginfo-thread.exp: Adjust expected output.
	* gdb.base/watchpoint-hw-hit-once.exp: Adjust expected output.
	* gdb.java/jnpe.exp: Adjust expected output.
	* gdb.threads/clone-new-thread-event.exp: Adjust expected output.
	* gdb.threads/continue-pending-status.exp: Adjust expected output.
	* gdb.threads/leader-exit.exp: Adjust expected output.
	* gdb.threads/manythreads.exp: Adjust expected output.
	* gdb.threads/pthreads.exp: Adjust expected output.
	* gdb.threads/schedlock.exp: Adjust expected output.
	* gdb.threads/siginfo-threads.exp: Adjust expected output.
	* gdb.threads/signal-command-multiple-signals-pending.exp: Adjust
	expected output.
	* gdb.threads/signal-delivered-right-thread.exp: Adjust expected
	output.
	* gdb.threads/sigthread.exp: Adjust expected output.
	* gdb.threads/watchpoint-fork.exp: Adjust expected output.
2016-01-18 15:15:18 +00:00
..
comp-dir/subdir
gdbinit-history
a2-run.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
advance.c
advance.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
alias.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
all-bin.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
all-types.c
annota-input-while-running.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
annota-input-while-running.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
annota1.c
annota1.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
annota3.c
annota3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
anon.c
anon.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
args.c
args.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
argv0-symlink.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
argv0-symlink.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arithmet.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arrayidx.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arrayidx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
asmlabel.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
asmlabel.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
assign.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
async-shell.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
async-shell.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
async.c
async.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-misread.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-misread.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-noexec.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-noexec.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-twice.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-twice.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-wait-input.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-wait-input.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach.c
attach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach2.c
auto-connect-native-target.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-connect-native-target.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-load-script GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-load.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-load.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auxv.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auxv.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
average.c
bang.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bar.c
batch-preserve-term-settings.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
batch-preserve-term-settings.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
baz.c
bfp-test.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bfp-test.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bg-execution-repeat.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bg-execution-repeat.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bigcore.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bigcore.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bitfields.c
bitfields.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bitfields2.c
bitfields2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bitops.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-cmds-execution-x-script.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-cmds-execution-x-script.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-cmds-execution-x-script.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-permanent.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-permanent.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
branches.c
break-always.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-always.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-caller-line.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-caller-line.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-entry.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-idempotent.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-idempotent.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-inline.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-inline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-interp-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-interp-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-interp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-main-file-remove-fail.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-main-file-remove-fail.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-on-linker-gcd-function.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-on-linker-gcd-function.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-probes-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-probes.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-probes.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-unload-file.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-unload-file.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
break1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-in-ro-region.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-in-ro-region.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-shadow.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-shadow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-ar-st.c
call-ar-st.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-rt-st.c
call-rt-st.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-sc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-sc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-signal-resume.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-signals.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-strs.c
call-strs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
callexit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
callexit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
callfuncs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
callfuncs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-fork-static.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-gdb-caused-signals.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-gdb-caused-signals.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-load-so.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-load.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-load.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal-fork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal-fork.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal-siginfo-cond.c Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition 2016-01-13 10:40:33 +00:00
catch-signal-siginfo-cond.exp Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition 2016-01-13 10:40:33 +00:00
catch-signal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-syscall.c Implement 'catch syscall' for gdbserver 2016-01-12 12:27:27 -08:00
catch-syscall.exp Implement 'catch syscall' for gdbserver 2016-01-12 12:27:27 -08:00
charset-malloc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
charset.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
charset.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
checkpoint-ns.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
checkpoint.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
checkpoint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
chng-syms.c
chng-syms.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code_elim.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code_elim1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code_elim2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
commands.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
compare-sections.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
compare-sections.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
completion.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
complex.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
complex.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
comprdebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cond-eval-mode.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cond-eval-mode.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cond-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
condbreak-call-false.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
condbreak-call-false.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
condbreak.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
consecutive-step-over.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
consecutive-step-over.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
consecutive.c
consecutive.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
constvars.c
constvars.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
continue-all-already-running.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
continue-all-already-running.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
coredump-filter.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
coredump-filter.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
corefile.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
coremaker.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj-f.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj-m.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj-v.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cursal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cursal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cvexpr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cvexpr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
d10vovly.c
dbx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dcache-line-read-error.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dcache-line-read-error.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
debug-expr.c
debug-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
default.exp Add $_gthread convenience variable 2016-01-13 11:03:19 +00:00
define.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
del.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
del.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
detach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dfp-exprs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dfp-test.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dfp-test.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disabled-location.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disabled-location.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-end-cu-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-end-cu-2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-end-cu.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.S GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disp-step-fork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disp-step-syscall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disp-step-vfork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
display.c
display.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dmsym.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dmsym.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dmsym_main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
double-prompt-target-event-error.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
double-prompt-target-event-error.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-bp-same-addr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-bp-same-addr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-detach.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-detach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-next.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-next.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-non-stop.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-non-stop.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
dprintf-pending.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-pending.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-pendshr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso1.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso2.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dtrace-probe.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dtrace-probe.d GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dtrace-probe.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dump.c
dump.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dup-sect.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dup-sect.S GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
duplicate-bp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
duplicate-bp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
echo.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
empty_exe.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ena-dis-br.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ending-run.c
ending-run.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enum_cond.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enum_cond.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enumval.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enumval.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
environ.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eu-strip-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eu-strip-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eval-avoid-side-effects.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eval-skip.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eval.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exe-lock.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
execd-prog.c
execl-update-breakpoints.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
execl-update-breakpoints.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
execution-termios.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
execution-termios.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exitsignal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-psymtabs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-psymtabs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exprs.c
exprs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fileio.c
fileio.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
filesym.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
filesym.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find-unmapped.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find-unmapped.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
finish.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fixsection.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fixsection.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fixsectshr.c
float.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
float.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
foll-exec-mode.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
foll-exec-mode.exp Reapply: List inferiors/threads/pspaces in ascending order 2016-01-12 01:12:38 +00:00
foll-exec.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
foll-exec.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
foll-fork.c
foll-fork.exp Reapply: List inferiors/threads/pspaces in ascending order 2016-01-12 01:12:38 +00:00
foll-vfork-exit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
foll-vfork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
foll-vfork.exp Reapply: List inferiors/threads/pspaces in ascending order 2016-01-12 01:12:38 +00:00
foo.c
fortran-sym-case.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fortran-sym-case.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
frame-args.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
frame-args.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
freebpcmd.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
freebpcmd.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullname.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullname.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullpath-expand-func.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullpath-expand.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullpath-expand.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptrs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptrs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
funcargs.c
funcargs.exp testsuite: i386 regression for funcargs.exp 2016-01-11 22:27:15 +01:00
gcore-buffer-overflow.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-buffer-overflow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-pie.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-pie.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb-sigterm-2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb-sigterm.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb-sigterm.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1056.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1090.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1090.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1250.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1250.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1555-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1555.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1555.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1821.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1821.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11530.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11530.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11531.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11531.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb_history
gdbhistsize-history.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbindex-stabs-dwarf.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbindex-stabs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbindex-stabs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbinit-history.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbvars.c
gdbvars.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso-solib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso-solib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-debugdata.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-debugdata.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-ifunc-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-ifunc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-ifunc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu_vector.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu_vector.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
grbx.c
hashline1.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hashline2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hashline3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-in-shr-unsupported-shr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-in-shr-unsupported.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-in-shr-unsupported.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-unmapped.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-unmapped.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak2.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
help.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
history-duplicates.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hook-stop.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hook-stop.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
huge.c
huge.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ifelse.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
included.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
included.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
included.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
inferior-died.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
inferior-died.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infnan.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infnan.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-fun-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-fun.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-fun.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-macros.c
info-macros.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-os.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-os.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-proc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared-solib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared-solib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-target.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infoline.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infoline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
int-type.c
interact.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interrupt-noterm.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interrupt-noterm.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interrupt.c
interrupt.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit-dlmain.c
jit-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit-simple.c
jit-simple.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit-so.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jump.c
jump.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-after-signal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-after-signal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-detach-inferiors-cmd.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-detach-inferiors-cmd.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
killed-outside.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
killed-outside.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
label.c
label.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
langs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
langs0.c
langs1.c
langs1.f GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
langs2.c
langs2.cxx
ldbl_e308.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ldbl_e308.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
line-symtabs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
line-symtabs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
line-symtabs.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
lineinc.c
lineinc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
list.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
list0.c
list0.h
list1.c
logical.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
long_long.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
long_long.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longest-types.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longest-types.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longjmp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longjmp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
m32r.ld
m32rovly.c
macscp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
Makefile.in
memattr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
memattr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
mips_pro.c
mips_pro.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
miscexprs.c
miscexprs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
morestack.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
morestack.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
moribund-step.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
multi-forks.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
multi-forks.exp Reapply: List inferiors/threads/pspaces in ascending order 2016-01-12 01:12:38 +00:00
multi-line-starts-subshell.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-addr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-addr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp1.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp3.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nextoverexit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nextoverexit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nodebug.c
nodebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nofield.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nofield.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-finish.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-finish.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-return.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-return.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
normal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nostdlib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nostdlib.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
opaque.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
opaque0.c
opaque1.c
overlays.c
overlays.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovlymgr.c
ovlymgr.h
page.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-after-ctrl-c-running.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-after-ctrl-c-running.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-bg-execution.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-bg-execution.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-execution-startup.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-execution-startup.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-inferior-exit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-inferior-exit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pc-fp.c
pc-fp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pending.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pending.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pendshr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
permissions.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pi.txt
pie-execl.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pie-execl.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pointers.c
pointers.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr10179-a.c
pr10179-b.c
pr10179.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr11022.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr11022.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prelink-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prelink.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prelink.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var-lib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var-lib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-symbol-loading-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-symbol-loading-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-symbol-loading.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
printcmds.c
printcmds.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue-include.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue-include.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue-include.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psymtab.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptr-typedef.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype.c
ptype.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype1.c
radix.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
random-signal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
random-signal.exp Test gdb.base/random-signal.exp with "attach" 2016-01-12 12:30:33 +00:00
randomize.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
randomize.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
range-stepping.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
range-stepping.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline-ask.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline-ask.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline-ask.inputrc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
realname-expand-real.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
realname-expand.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
realname-expand.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
recpar.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
recpar.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
recurse.c
recurse.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relational.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relativedebug.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relativedebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relocate.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relocate.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
remote.c
remote.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
remotetimeout.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
reread.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
reread1.c
reread2.c
restore.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
restore.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return-nodebug.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return-nodebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return-nodebug1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return.c
return.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return2.c
return2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
run-after-attach.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
run-after-attach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
run.c
save-bp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
save-bp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
savedregs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
savedregs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
scope.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
scope0.c
scope1.c
sect-cmd.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
segv.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sep-proc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sep.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sep.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepdebug.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepdebug.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
sepdebug2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepsymtab.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepsymtab.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
set-lang-auto.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
set-noassign.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
setshow.c
setshow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
setvar.c
setvar.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
shell.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
shlib-call.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
shreloc1.c
shreloc2.c
sigall.c
sigall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigaltstack.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigaltstack.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigbpt.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigbpt.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigchld.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigchld.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-addr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-addr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-obj.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-obj.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-thread.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-thread.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
siginfo.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signals.c
signals.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signest.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signest.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signull.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signull.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigrepeat.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigrepeat.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigstep.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigstep.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sizeof.c Run gdb.base/sizeof.exp with board having gdb,noinferiorio 2015-12-03 17:12:41 +00:00
sizeof.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
skip.c
skip.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
skip1.c
so-disc-shr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
so-impl-ld.c
so-impl-ld.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-corrupted.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-disc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-disc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-display-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-display-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-display.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-nodir.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-overlap-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-overlap-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-overlap.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search-lib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search-lib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-symbol-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-symbol-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-symbol.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-weak.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-weak.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib1.c Remove HP-UX references fom testsuite 2015-12-21 12:51:54 -05:00
source-dir.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-error.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-execution.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-execution.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-execution.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-nofile.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-test.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sss-bp-on-user-bp-2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sss-bp-on-user-bp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sss-bp-on-user-bp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stack-checking.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stack-checking.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stale-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stale-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stap-probe.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stap-probe.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
start.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
start.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
statistics.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-break.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-break.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-bt.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-bt.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-line.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-line.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-line.inp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-over-no-symbols.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-resume-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-resume-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-sw-breakpoint-adjust-pc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-sw-breakpoint-adjust-pc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-symless.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-symless.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-test.c
step-test.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
store.c
store.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs2.c
structs2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs3.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
subst.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sum.c
sym-file-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file-loader.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file-loader.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symbol-without-target_section.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symbol-without-target_section.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order-shlib-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
term.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
term.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
testenv.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
testenv.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
trace-commands.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
tui-layout.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
twice.c
twice.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
type-opaque-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
type-opaque-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
type-opaque.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ui-redirect.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unload.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unload.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unloadshr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unloadshr2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
until-nodebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
until.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unwindonsignal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unwindonsignal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-db-attach.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-db-attach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-disp-step.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-disp-step.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
value-double-free.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
value-double-free.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
varargs.c
varargs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vdso-warning.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vdso-warning.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vforked-prog.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-datatypes.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-datatypes.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-ptr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-ptr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-sideeffect.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-sideeffect.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-stub-define.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-stub.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-stub.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
volatile.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-bitfields.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-bitfields.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-non-mem.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-non-mem.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-read.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-read.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-vfork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-vfork.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch_thread_num.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch_thread_num.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
watchpoint-cond-gone-stripped.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-cond-gone.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-cond-gone.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-delete.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-delete.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-hw-hit-once.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-hw-hit-once.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
watchpoint-hw.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-hw.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-reuse-slot.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-reuse-slot.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-solib-shr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-solib.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-stops-at-right-insn.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-stops-at-right-insn.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint.c
watchpoint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoints.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoints.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wchar.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wchar.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
weaklib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
weaklib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
whatis-exp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
whatis.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
whatis.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wrong_frame_bt_full-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wrong_frame_bt_full-opaque.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wrong_frame_bt_full.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00