]> sourceware.org Git - insight.git/log
insight.git
9 years agoFix setting no action to tracepoint.
Patrick Monnerat [Mon, 17 Aug 2015 12:10:36 +0000 (14:10 +0200)]
Fix setting no action to tracepoint.

* gdbtk/generic/gdbtk-bp.c (gdb_actions_command): Preset comman pointer to NULL.
  Do not call read_command_lines_1() when no action is defined.

9 years agoImplement a subclass for the tracepoint window.
Patrick Monnerat [Sun, 16 Aug 2015 16:47:06 +0000 (17:47 +0100)]
Implement a subclass for the tracepoint window.
This prevents the confusion between the breakpont and the tracepoint windows.
It allows to have both open at the same time.

* gdbtk/library/managedwin.itb (ManagedWin::_open): Do not match an object
  with a class if it's not the top class.
* gdbtk/library/srcbar.itcl (create_view_menu): Direct the tracepoints menu
  entry to open a Tpwin tracepoint window.
  Remove redundant "-tracepoints 0" on the breakpoints menu entry.
  (create_window_buttons): The Tracepoints button opens a TpWin, not a Bpwin.
* gdbtk/library/srctextwin.itb (SrcTextWin::do_key): Key "tracepoints" opens
  a TpWin, not a BpWin.
* gdbtk/library/tpwin.itcl: New file. Defines the TpWin subclass of BpWin.
* gdbtk/library/tclIndex: Defines the TpWin related indexes.

9 years agoAvoid accessing non-existing event "disposition" on a tracepoint.
Patrick Monnerat [Sun, 16 Aug 2015 13:08:20 +0000 (14:08 +0100)]
Avoid accessing non-existing event "disposition" on a tracepoint.

* gdbtk/library/bpwin.itb (BpWin::bp_add): Get disposition event only for
  breakpoints. Fix a typo.
  (BpWin::bp_modify): Get disposition event only for breakpoints.

9 years agoJanitorial: strip trailing spaces.
Patrick Monnerat [Sun, 16 Aug 2015 12:47:38 +0000 (13:47 +0100)]
Janitorial: strip trailing spaces.

9 years agoInitialize breakpoint window before building it.
Patrick Monnerat [Sun, 16 Aug 2015 10:37:56 +0000 (11:37 +0100)]
Initialize breakpoint window before building it.
This effectively enables building a true tracepoint window.

* gdbtk/library/bpwin.itb (BpWin::constructor): Move itk_initialize call before
  build_win.

9 years agoSet tracepoint action dialog as modal.
Patrick Monnerat [Sun, 16 Aug 2015 10:31:12 +0000 (11:31 +0100)]
Set tracepoint action dialog as modal.

* gdbtk/library/actiondlg.tcl (class ActionDlg): Inherits ModalDialog.

9 years agoChange copyright year of last modified file (gdbtk/library/tracedlg.tcl).
Patrick Monnerat [Sat, 15 Aug 2015 09:35:28 +0000 (10:35 +0100)]
Change copyright year of last modified file (gdbtk/library/tracedlg.tcl).

9 years agoSet trace dialog as modal.
Patrick Monnerat [Sat, 15 Aug 2015 09:31:56 +0000 (10:31 +0100)]
Set trace dialog as modal.

* gdbtk/library/tracedlg.tcl (class TraceDlg): Inherits ModalDialog.

9 years agoTolerate build of an empty tracepoint dialog.
Patrick Monnerat [Sat, 15 Aug 2015 09:14:51 +0000 (10:14 +0100)]
Tolerate build of an empty tracepoint dialog.

* gdbtk/library/tracedlg.tcl (build_win): Always define "multiline".
  Define default values when no tracepoint is selected.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 14 Aug 2015 18:37:39 +0000 (20:37 +0200)]
Upgrade submodule.

9 years agoMake the "Set Tracepoint" dialog working.
Patrick Monnerat [Fri, 14 Aug 2015 18:30:25 +0000 (20:30 +0200)]
Make the "Set Tracepoint" dialog working.
This is achieved by accepting configure arguments in the Labelledframe
constructor and avoiding a null-pointer dereferencing when no action is
associated.

* gdbtk/generic/gdbtk-bp.c (gdb_actions_command): When no action is given,
  parse commands from a zero-length string.
* libgui/library/lframe.tcl (constructor): Accept arguments and configure.

9 years agoMake trace find feature working again.
Patrick Monnerat [Fri, 14 Aug 2015 15:52:28 +0000 (17:52 +0200)]
Make trace find feature working again.
The trace frame find GUI feature was connected to the deprecated_trace_find_hook
that gdb still defines, but does not call anymore.
The same function is now achieved via a traceframe_changed observer.

* gdbtk/generic/gdbtk-hooks.c:
  (gdbtk_trace_find): Change prototype to match the traceframe_changed observer.
  Pass the new arguments to tcl/tk.
  (gdbtk_add_hooks): Connect gdbtk_trace_find as an observer, not a hook.
* gdbtk/library/interface.tcl (gdbtk_tcl_trace_find_hook):
  Use observer parameters.
* gdbtk/library/srcbar.itcl (handle_trace_find_hook): Use observer parameters.
* gdbtk/library/srctextwin.it[bh] (trace_find_hook): Use observer parameters.

9 years agoconfigure: autoconf in gdb/testsuite/gdb.gdbtk
Patrick Monnerat [Thu, 13 Aug 2015 17:21:36 +0000 (19:21 +0200)]
configure: autoconf in gdb/testsuite/gdb.gdbtk
This is now needed by the src-release.sh script.

9 years agoUpdate copyright year of latest changed files.
Patrick Monnerat [Thu, 13 Aug 2015 16:38:27 +0000 (18:38 +0200)]
Update copyright year of latest changed files.

9 years agoComment patches.
Patrick Monnerat [Thu, 13 Aug 2015 13:54:55 +0000 (15:54 +0200)]
Comment patches.

9 years agogdbtk: adapt to the new explicit locations API
Patrick Monnerat [Thu, 13 Aug 2015 13:04:59 +0000 (15:04 +0200)]
gdbtk: adapt to the new explicit locations API

* gdb/generic/gdbtk-bp.c: Include location.h.
  (gdb_get_breakpoint_info): Use event_location_to_string instead of
  `addr_string'.
  (gdb_set_bp): Use string_to_event_location and pass this to
  create_breakpoint instead of an address string.
  (tracepoint_exists): Use string_to_event_location and pass this to
  decode_line_1 instead of an address string.
* gdb/generic/gdbtk-cmds.c: Include location.h.
  (gdb_get_line_command): Use string_to_event_location and pass this to
  decode_line_1 instead of an address string.
  (gdb_get_file_command): Likewise.
  (gdb_get_function_command): Likewise.
* gdb/generic/gdbtk-stack.c: Include location.h.
  (gdb_get_vars_command):Use string_to_event_location and pass this to
  decode_line_1 instead of an address string.

9 years agoUpgrade submodule.
Patrick Monnerat [Thu, 13 Aug 2015 12:21:05 +0000 (14:21 +0200)]
Upgrade submodule.

9 years agoTcl does not like defining an array item as a global variable.
Patrick Monnerat [Tue, 11 Aug 2015 14:30:54 +0000 (16:30 +0200)]
Tcl does not like defining an array item as a global variable.
Only the array name may be declared global.
* gdbtk/library/targetselection.itb (set_run): Comment out global declaration.

9 years agoMatch allocator to destructor: bfd_openr --> gdb_bfd_openr.
Patrick Monnerat [Tue, 11 Aug 2015 14:25:54 +0000 (16:25 +0200)]
Match allocator to destructor: bfd_openr --> gdb_bfd_openr.
This avoids a segmentation fault at cleanup time.
* gdbtk/generic/gdbtk-cmds.c (gdb_load_info): Use gdb_bfd_openr().

9 years agoUpgrade submodule.
Patrick Monnerat [Tue, 11 Aug 2015 14:13:40 +0000 (16:13 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule. Update patches accordingly.
Patrick Monnerat [Fri, 7 Aug 2015 10:18:07 +0000 (12:18 +0200)]
Upgrade submodule. Update patches accordingly.

9 years ago* gdbtk/generic/gdbtk-hooks.c (gdbtk_print_frame_info): Add a comment
Patrick Monnerat [Mon, 3 Aug 2015 12:31:19 +0000 (14:31 +0200)]
* gdbtk/generic/gdbtk-hooks.c (gdbtk_print_frame_info): Add a comment
  to justify the presence of an emtpy hook.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 31 Jul 2015 09:43:42 +0000 (11:43 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Mon, 27 Jul 2015 10:36:01 +0000 (12:36 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 24 Jul 2015 09:34:13 +0000 (11:34 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Wed, 15 Jul 2015 11:40:31 +0000 (13:40 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule. Update gui code according to submodule change.
Patrick Monnerat [Thu, 9 Jul 2015 09:56:21 +0000 (11:56 +0200)]
Upgrade submodule. Update gui code according to submodule change.
Replace (suppressed) deprecated_register_changed_hook by observer.

* generic/gdbtk-hooks.c (gdbtk_register_changed): Alter prototype for use as
an observer.
(gdbtk_add_hooks): Remove reference to deprecated_register_changed_hook. Use
observer_attach_register_changed() instead.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Fri, 3 Jul 2015 09:50:37 +0000 (11:50 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule. Adapt sources according to submodule changes.
Patrick Monnerat [Wed, 1 Jul 2015 14:09:56 +0000 (16:09 +0200)]
Upgrade submodule. Adapt sources according to submodule changes.

GDB suppressed the deprecated_selected_frame_level_changed_hook: the following
changes have been made to accomodate gdbtk to this new situation:

* gdbtk/generic/gdbtk-hooks.c (deprecated_selected_frame_level_changed_hook):
Remove assignment.
* gdbtk/generic/gdbtk-hooks.c (gdbtk_selected_frame_changed): No longer used.
Remove.
* gdbtk/generic/gdbtk-stack.c (gdb_selected_frame_level): New Tcl function.
* gdbtk/library/stackwin.itb (StackWin::update): replace use of
gdb_selected_frame_level global variable by a call to gdb_selected_frame_level.

9 years agoUpgrade submodule.
Patrick Monnerat [Mon, 29 Jun 2015 09:47:36 +0000 (11:47 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule.
Patrick Monnerat [Tue, 23 Jun 2015 10:21:54 +0000 (12:21 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 19 Jun 2015 09:45:03 +0000 (11:45 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 12 Jun 2015 10:14:20 +0000 (12:14 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 29 May 2015 09:36:52 +0000 (11:36 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 22 May 2015 10:14:09 +0000 (12:14 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Fri, 15 May 2015 10:13:25 +0000 (12:13 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule.
Patrick Monnerat [Fri, 8 May 2015 09:29:28 +0000 (11:29 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Tue, 5 May 2015 13:04:00 +0000 (15:04 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule.
Patrick Monnerat [Wed, 22 Apr 2015 10:02:35 +0000 (12:02 +0200)]
Upgrade submodule.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Wed, 15 Apr 2015 09:31:05 +0000 (11:31 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Fri, 10 Apr 2015 10:20:33 +0000 (12:20 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule. Update patches accordingly.
Patrick Monnerat [Wed, 8 Apr 2015 10:12:20 +0000 (12:12 +0200)]
Upgrade submodule. Update patches accordingly.

9 years agoUpgrade submodule. Update patches accordingly.
Patrick Monnerat [Wed, 1 Apr 2015 10:17:59 +0000 (12:17 +0200)]
Upgrade submodule. Update patches accordingly.

9 years agoREADME: update configure example to use system installed zlib.
Patrick Monnerat [Tue, 31 Mar 2015 10:01:52 +0000 (12:01 +0200)]
README: update configure example to use system installed zlib.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Mon, 30 Mar 2015 12:10:20 +0000 (14:10 +0200)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule.
Patrick Monnerat [Tue, 24 Mar 2015 11:26:51 +0000 (12:26 +0100)]
Upgrade submodule.

9 years agoAccept source code files in tcl system character encoding.
Patrick Monnerat [Wed, 18 Mar 2015 13:41:39 +0000 (14:41 +0100)]
Accept source code files in tcl system character encoding.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Wed, 18 Mar 2015 09:53:25 +0000 (10:53 +0100)]
Upgrade submodule. Update patch accordingly.

9 years agoRemove "Red Hat" from about window title.
Patrick Monnerat [Tue, 17 Mar 2015 13:20:51 +0000 (14:20 +0100)]
Remove "Red Hat" from about window title.

9 years agoNew icon in M$W icon file. Upgrade submodule. Adjust patch accordingly.
Patrick Monnerat [Tue, 17 Mar 2015 12:47:03 +0000 (13:47 +0100)]
New icon in M$W icon file. Upgrade submodule. Adjust patch accordingly.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Mon, 16 Mar 2015 13:12:09 +0000 (14:12 +0100)]
Upgrade submodule. Update patch accordingly.

9 years agoUpgrade submodule. Update patch accordingly.
Patrick Monnerat [Fri, 13 Mar 2015 17:14:56 +0000 (18:14 +0100)]
Upgrade submodule. Update patch accordingly.

9 years agoMake it compilable under MinGW.
Patrick Monnerat [Fri, 13 Mar 2015 16:58:47 +0000 (17:58 +0100)]
Make it compilable under MinGW.
Improve tcl/tk platform detection.
Apply a new patch to gnulib for MinGW compatibility.
Rebuild autotool files in gnulib.
Rework configure.ac for MinGW use.

9 years agoEffectively define C TCL_PLATFORM_xxx and TK_PLATFORM_xxx in gdbtk compilation.
Patrick Monnerat [Wed, 11 Mar 2015 14:27:40 +0000 (15:27 +0100)]
Effectively define C TCL_PLATFORM_xxx and TK_PLATFORM_xxx in gdbtk compilation.
Remove configure code for compilation with in-tree tcl/tk.

9 years agoUpgrade submodule.
Patrick Monnerat [Tue, 10 Mar 2015 19:23:59 +0000 (20:23 +0100)]
Upgrade submodule.

9 years agoMake it compilable under Cygwin.
Patrick Monnerat [Tue, 10 Mar 2015 19:13:57 +0000 (20:13 +0100)]
Make it compilable under Cygwin.
 Cygwin version of tcl/tk is implemented as a "unix" version, so it has no
Windows API. This commit determines the tcl/tk installation platform at
configure time, and uses this result for conditional compilation instead of
_WIN32.

9 years agovariable_print(): reinstate custom print format (base).
Patrick Monnerat [Tue, 10 Mar 2015 13:16:37 +0000 (14:16 +0100)]
variable_print(): reinstate custom print format (base).

9 years agoRemove obsolete Makefile.in files: they'll be rebuilt by automake.
Patrick Monnerat [Mon, 9 Mar 2015 15:15:50 +0000 (16:15 +0100)]
Remove obsolete Makefile.in files: they'll be rebuilt by automake.

9 years agoRemove obsolete aclocal.m4 files: they'll be rebuilt by aclocal.
Patrick Monnerat [Mon, 9 Mar 2015 15:06:45 +0000 (16:06 +0100)]
Remove obsolete aclocal.m4 files: they'll be rebuilt by aclocal.

9 years agoRemove obsolete configure scripts: they'll be rebuilt by autoconf.
Patrick Monnerat [Mon, 9 Mar 2015 14:58:36 +0000 (15:58 +0100)]
Remove obsolete configure scripts: they'll be rebuilt by autoconf.

9 years agoUpgrade submodule, adjust code accordingly.
Patrick Monnerat [Mon, 9 Mar 2015 13:48:28 +0000 (14:48 +0100)]
Upgrade submodule, adjust code accordingly.

9 years agoconfigure: fix argument quoting
Patrick Monnerat [Fri, 6 Mar 2015 14:58:41 +0000 (15:58 +0100)]
configure: fix argument quoting

9 years agoDo not destroy parent state from vforked child.
Patrick Monnerat [Fri, 6 Mar 2015 12:53:01 +0000 (13:53 +0100)]
Do not destroy parent state from vforked child.

9 years agoUpgrade submodule.
Patrick Monnerat [Thu, 5 Mar 2015 15:31:53 +0000 (16:31 +0100)]
Upgrade submodule.

9 years agoFix the crash caused by using an "xterm" new terminal.
Patrick Monnerat [Thu, 5 Mar 2015 15:15:11 +0000 (16:15 +0100)]
Fix the crash caused by using an "xterm" new terminal.

9 years agoUpgrade submodule, adjust code accordingly.
Patrick Monnerat [Tue, 3 Mar 2015 12:26:54 +0000 (13:26 +0100)]
Upgrade submodule, adjust code accordingly.

9 years agoSet top windows icon.
Patrick Monnerat [Tue, 3 Mar 2015 11:20:59 +0000 (12:20 +0100)]
Set top windows icon.

9 years agoNew icon and logo. About dialog adjusted to new look.
Patrick Monnerat [Mon, 2 Mar 2015 17:06:43 +0000 (18:06 +0100)]
New icon and logo. About dialog adjusted to new look.

9 years agoUpgrade submodule.
Patrick Monnerat [Thu, 26 Feb 2015 10:21:21 +0000 (11:21 +0100)]
Upgrade submodule.

9 years agoUpdate configure example in README
Patrick Monnerat [Fri, 20 Feb 2015 13:11:37 +0000 (14:11 +0100)]
Update configure example in README

9 years agoMerge branch 'master' of github.com:/monnerat/insight into no_tcltk
Patrick Monnerat [Fri, 20 Feb 2015 12:04:47 +0000 (13:04 +0100)]
Merge branch 'master' of github.com:/monnerat/insight into no_tcltk

9 years agoImprove tclConfig.sh and tkConfig.sh path detection bundled-tcl
Keith Seitz [Fri, 20 Feb 2015 11:50:41 +0000 (12:50 +0100)]
Improve tclConfig.sh and tkConfig.sh path detection

9 years agoMerge branch 'master' of github.com:/monnerat/insight
Patrick Monnerat [Wed, 18 Feb 2015 18:09:37 +0000 (19:09 +0100)]
Merge branch 'master' of github.com:/monnerat/insight

Conflicts:
gdbtk/ChangeLog

9 years agoLighter checkbox background.
Patrick Monnerat [Wed, 18 Feb 2015 18:06:51 +0000 (19:06 +0100)]
Lighter checkbox background.

9 years agoMerge branch 'master' of github.com:/monnerat/insight into no_tcltk
Patrick Monnerat [Wed, 18 Feb 2015 13:14:23 +0000 (14:14 +0100)]
Merge branch 'master' of github.com:/monnerat/insight into no_tcltk

9 years agoPretty printers in tooltips.
Patrick Monnerat [Wed, 18 Feb 2015 13:12:05 +0000 (14:12 +0100)]
Pretty printers in tooltips.

9 years agoUnbundle tcl, tk, itcl, itk, iwidgets.
Patrick Monnerat [Tue, 17 Feb 2015 16:23:52 +0000 (17:23 +0100)]
Unbundle tcl, tk, itcl, itk, iwidgets.

9 years agoBe more tolerant about tcl package names and versions.
Patrick Monnerat [Mon, 16 Feb 2015 18:17:53 +0000 (19:17 +0100)]
Be more tolerant about tcl package names and versions.

9 years agoUpgrade submodules.
Patrick Monnerat [Mon, 16 Feb 2015 15:36:12 +0000 (16:36 +0100)]
Upgrade submodules.

9 years agoDo not issue empty target command.
Patrick Monnerat [Mon, 16 Feb 2015 15:25:38 +0000 (16:25 +0100)]
Do not issue empty target command.

9 years agoUpgrade submodules.
Patrick Monnerat [Fri, 13 Feb 2015 14:25:25 +0000 (15:25 +0100)]
Upgrade submodules.

9 years agoPrefer lvalue addresses as target in memory window.
Patrick Monnerat [Fri, 13 Feb 2015 14:22:46 +0000 (15:22 +0100)]
Prefer lvalue addresses as target in memory window.

9 years agoImplement pretty printers in local variables and watch windows.
Patrick Monnerat [Tue, 10 Feb 2015 15:02:13 +0000 (16:02 +0100)]
Implement pretty printers in local variables and watch windows.

9 years agoUpgrade submodules.
Patrick Monnerat [Tue, 10 Feb 2015 14:53:17 +0000 (15:53 +0100)]
Upgrade submodules.

9 years agoUpgrade submodules.
Patrick Monnerat [Fri, 6 Feb 2015 11:28:48 +0000 (12:28 +0100)]
Upgrade submodules.

9 years agoUpgrade submodules. Adjust patch accordingly.
Patrick Monnerat [Tue, 3 Feb 2015 13:51:04 +0000 (14:51 +0100)]
Upgrade submodules. Adjust patch accordingly.

9 years agoUpgrade submodules.
Patrick Monnerat [Fri, 30 Jan 2015 13:28:27 +0000 (14:28 +0100)]
Upgrade submodules.

9 years agoFix a segmentation fault in function browser.
Patrick Monnerat [Fri, 30 Jan 2015 12:58:09 +0000 (13:58 +0100)]
Fix a segmentation fault in function browser.

9 years agoUpgrade submodules.
Patrick Monnerat [Tue, 27 Jan 2015 17:30:48 +0000 (18:30 +0100)]
Upgrade submodules.

9 years agolibgui/src/tkTable.c: Set NO_XSETCLIP universally.
Patrick Monnerat [Fri, 23 Jan 2015 18:28:17 +0000 (19:28 +0100)]
libgui/src/tkTable.c: Set NO_XSETCLIP universally.

9 years agoUpgrade submodules.
Patrick Monnerat [Fri, 23 Jan 2015 15:19:56 +0000 (16:19 +0100)]
Upgrade submodules.

9 years agogeneric/gdbtk-register.c: Use target architecture for allocation.
Patrick Monnerat [Fri, 23 Jan 2015 15:18:03 +0000 (16:18 +0100)]
generic/gdbtk-register.c: Use target architecture for allocation.

9 years agogdbtk/generic/gdbtk-stack.c: fix swapped comments.
Patrick Monnerat [Thu, 22 Jan 2015 13:58:17 +0000 (14:58 +0100)]
gdbtk/generic/gdbtk-stack.c: fix swapped comments.

9 years agoUpgrade submodules.
Patrick Monnerat [Mon, 19 Jan 2015 13:45:22 +0000 (14:45 +0100)]
Upgrade submodules.

9 years agoUpgrade submodules.
Patrick Monnerat [Fri, 16 Jan 2015 11:07:21 +0000 (12:07 +0100)]
Upgrade submodules.

9 years agoUpgrade submodules.
Patrick Monnerat [Wed, 14 Jan 2015 13:32:28 +0000 (14:32 +0100)]
Upgrade submodules.

9 years agoLicense: use latest official form from www.gnu.org. Update FSF address.
Patrick Monnerat [Wed, 14 Jan 2015 13:29:58 +0000 (14:29 +0100)]
License: use latest official form from www.gnu.org. Update FSF address.

9 years agoUpgrade submodules, adjust patches and code accordingly.
Patrick Monnerat [Mon, 12 Jan 2015 15:20:26 +0000 (16:20 +0100)]
Upgrade submodules, adjust patches and code accordingly.

9 years agogeneric/gdbtk-cmds.c: use SYMBOL_SYMTAB() macro.
Patrick Monnerat [Fri, 19 Dec 2014 14:19:21 +0000 (15:19 +0100)]
generic/gdbtk-cmds.c: use SYMBOL_SYMTAB() macro.
+ upgrade submodules.

9 years agoChange signature of gdbtk_readline to match change in gdb.
Simon Marchi [Tue, 16 Dec 2014 11:05:24 +0000 (12:05 +0100)]
Change signature of gdbtk_readline to match change in gdb.

This page took 0.059201 seconds and 5 git commands to generate.