TGDB Manual 0.1.0

Table of Contents

Next: , Up: (dir)   [Contents][Index]

TGDB

This manual is for GNU TGDB (version 0.1.0, 16 January 2022), the GNU ncurses based front end to GDB.

Copyright © 2019 TGDB Team

This document is part of a free software program; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston MA 02111-1307 USA


Next: , Previous: , Up: Top   [Contents][Index]

Summary of TGDB

TGDB is a curses-based interface to the GNU Debugger (GDB). The goal of TGDB is to be lightweight and responsive; not encumbered with unnecessary features. TGDB diverges from CGDB, this document is generated mainly by substitute cgdb to tgdb.

The interface is designed to deliver the familiar GDB text interface, with a split screen showing the source as it executes. The UI is modeled on the classic Unix text editor, vi. Those familiar with vi should feel right at home using TGDB.

The library responsible for communicating with GDB is called gdbwire. Those wanting to develop other interfaces to GDB are welcome to use gdbwire as the basis for their program. Many of the headaches of parsing GDB’s output and annotations can be avoided by using it.

Some features offered by TGDB are:


Next: , Previous: , Up: Top   [Contents][Index]

1 Getting In and Out of TGDB

This chapter discusses how to start TGDB, and how to get out of it. The essentials are:


Next: , Previous: , Up: Top   [Contents][Index]

2 Understanding the core concepts of TGDB

The TGDB user interface currently consists of two windows and a status bar. The source window is currently on the top and the GDB window is on the bottom. The status bar currently separates the two windows.

The interface has several modes depending on which window is focused. TGDB mode is when the source window is focused and GDB mode is when the GDB window is focused.

Beginning with TGDB version 1.0, the windows are movable, and the user will be able to create as many or as few that is desired. Currently however, all of my time is spent developing the interface between TGDB and GDB. Once this is complete, the UI of TGDB will become much more polished. If you are a ncurses developer, and have spare time to work on this task, please contact me.


Next: , Up: Understanding TGDB   [Contents][Index]

2.1 Understanding the source window.

The source window is the window that provides you a view of the source code that the debugged program is made up of. It will display to the user a single source file at a time. While the user is debugging, via next and step, TGDB will update the source file and line number to keep you informed as to where GDB is debugging.

TGDB has several features that make debugging easier than using plain old GDB. One feature you will notice right away while debugging a C, C++ or ADA program, is that the source files are syntax highlighted. This allows the user to easily navigate through the source file to look for certain places in the source code. If you would like to see another source language highlighted, contact us. To understanding how to navigate through the source window look at the commands in TGDB Mode.

In addition to showing the source code, TGDB also displays to the user the currently executing line. The line number will be highlighted green, to represent that the particular line, is the current line being debugged by GDB. Also, TGDB will display an arrow extending from the line number, to the source line. You can configure what type of display TGDB uses with the :set executinglinedisplay configuration option. By default, the longarrow display is used.

As you navigate through the source window, the current line the cursor is on will be highlighted with a block. This simply helps you keep track of where you are in the file. You can configure what type of display TGDB uses with the :set selectedlinedisplay configuration option. By deafult, the block display is used.

Also, you can set or delete breakpoints in TGDB from the source window. Simply navigate to the line that you are interested in setting a breakpoint, and hit the space bar. This will set a breakpoint on the line if one did not already exist. The line number should turn red to indicate that a breakpoint has been set. Hitting the space bar again will delete the breakpoint. If you disable the breakpoint, the line number will turn yellow, to represent the disabled breakpoint.

TGDB also supports regular expression searching within the source window. If you type / or ? you can search in the source window for a string of interest. The C library regular expression functions are used to perform this search, which honors things like ‘*’ or ‘+’.

The full list of commands that are available in the source window is in TGDB Mode.

Auxiliary panes and the workspace context menu

In addition to the source and GDB windows, TGDB’s workspace can host several auxiliary panes:

Locals

Local variables of the current frame, expanded as a tree.

Stack

Call stack of the current thread.

Threads

List of threads in the inferior.

Registers

CPU registers, grouped by category.

Evaluations

User-supplied expressions added with :evaluate; each is re-evaluated automatically on every GDB stop.

Memory

Hex/ASCII (or binary / octal / decimal) dump of a region of memory, populated with :memory addr. The Memory pane is multi-instance — the workspace can hold any number of them simultaneously, and each is refreshed on every GDB stop. Rendering is fully pluggable through the :set memoryformatter=... option (see Configuring TGDB).

Disasm

Disassembly of the current function, primed automatically on creation (main when the program has not started). Independent of the inline :disasm mode in the source pane.

Right-click anywhere in the workspace to open the cascading context menu. Its Add sub-menu lists all panes that can still be added (panes that are already mounted are hidden, except the multi-instance Memory pane which can always be added again). Split, Hide, and orientation toggles operate on the pane under the cursor.


Next: , Previous: , Up: Understanding TGDB   [Contents][Index]

2.2 Understanding the GDB window.

The GDB window is how TGDB allows the user to interface with the GNU debugger. If you wish to pass a command to GDB, simply type it into this window and GDB will receive the command. This interface is intended to be 100% identical to using GDB on a terminal.

There is a limited set of keys that can be typed into this window that TGDB interprets and handles, instead of sending to GDB. They are all available in GDB Mode.

TGDB attempts to buffer commands the same way they would be if you typed them at the terminal. So, if you type several commands before a single one finishes, they will each be run in order. There will be no way to stop these commands from being run besides from typing Ctrl-C, like you would at any normal terminal when working with GDB.

TGDB also supports regular expression searching within the GDB window.


Next: , Previous: , Up: Understanding TGDB   [Contents][Index]

2.3 Understanding the file dialog window.

The file dialog window is available to help the user view and select which file they would like to view. It provides the user with a list of all the files that make up the program being debugged. If there are no files available, because there is no program being debugged or because there is no debug symbols, then the file dialog will not open and a message will be displayed at the status bar.

You can get to the file dialog by hitting o when you are at the source window. Once you enter the file dialog, it is possible to leave it by hitting q. You can navigate the file dialog using the standard direction keys and you can even use regular expression to find your file. This can save a lot of time as the number of files grow.

The full list of commands that are available in the source window is in File Dialog Mode.


Next: , Previous: , Up: Understanding TGDB   [Contents][Index]

2.4 Understanding the command-line bar.

The command-line bar is the general purpose way for TGDB to show the user which commands they are currently typing or report errors to the user when they occur. TGDB does not use popup’s or other forms of I/O to alert the user of information or problems.

While TGDB is running, you can configure it with any of the commands that are valid in TGDB’s configuration file. Simply type : in the source window, and you will see the colon, and the rest of the command you type appear in the command-line bar. When you are finished typing the command that you are interested in, type enter. This will alert TGDB to execute the command. If at any point you would like to cancel the current command typed so far, type the tgdb mode key. This will put you back into TGDB mode. For a description of the tgdb mode key, see Switching Windows.

The full list of commands that are available in the source window is in Configuring TGDB.


Previous: , Up: Understanding TGDB   [Contents][Index]

2.5 Switch between windows

When TGDB is invoked, the interface is in GDB mode. A ‘*’ at the right of the status bar indicates that input will be passed to GDB. To change the focus to the source window, hit the ESC key. The tgdb mode key is the key that is responsible for switching the user into TGDB mode from a different mode. The tgdb mode key is defaulted to the ESC key. To change this value, look at the configuration options for TGDB. See Configuring TGDB.

The interface is now in TGDB mode. To switch back into GDB mode, press i. This syntax is based on the popular Unix text-editor, vi.


Next: , Previous: , Up: Top   [Contents][Index]

3 TGDB commands

TGDB can be controlled in a variety of different ways. Each mode that TGDB is in acts differently. Currently TGDB implicitly changes modes depending on which window is active. The following information will help you determine what commands are accessible during which modes.


Next: , Up: Controlling TGDB   [Contents][Index]

3.1 Commands available during TGDB mode

When you are in the source window, you are implicitly in TGDB mode. All of the below commands are available during this mode. This mode is primarily available for the user to view the current source file, search it, or switch to a different mode.

tgdbmodekey

Puts the user into command mode. However, you are already in this mode. This is defaulted to the ESC key.

i

Puts the user into GDB mode.

s

Puts the user into scroll mode in the GDB mode.

Ctrl-T

Opens a new tty for the debugged program.

Ctrl-W

Toggle the window orientation (horizontal <-> vertical).

[<number>]k
[<number>]up arrow

Move up a line or up ‘<number>’ lines.

[<number>]j
[<number>]down arrow

Move down a line or down ‘<number>’ lines.

h
left arrow

Move left a line.

l
right arrow

Move right a line.

Ctrl-b
page up

Move up a page.

Ctrl-u

Move up 1/2 a page.

Ctrl-f
page down

Move down a page.

Ctrl-d

Move down 1/2 a page.

gg

Move to the top of file.

[<number>]G

Move to the bottom of file or to a line number within the file.

m[a-zA-Z]

Set a mark at the cursor position. A lower case letter sets a local mark that is valid within one file. An upper case letter sets a global mark valid between files. If there are ten files, each file can have a mark ‘a’, but only one can have a mark ‘A’.

'[a-zA-Z]

Jump to the corresponding local or global mark.

''

Jump to the last jump location.

'.

Jump to the currently executing line.

/

search from current cursor position.

?

reverse search from current cursor position.

n

next forward search.

N

next reverse search.

o

open the file dialog.

spacebar

Sets a breakpoint at the current line number.

t

Sets a temporary breakpoint at the current line number.

-

Shrink source window 1 line or column (depending on split orientation).

=

Grow source window 1 line or column (depending on split orientation).

_

Shrink source window 25%

+

Grow source window 25%

Ctrl-l

Clear and redraw the screen.

F5

Send a run command to GDB.

F6

Send a continue command to GDB.

F7

Send a finish command to GDB.

F8

Send a next command to GDB.

F10

Send a step command to GDB.


Next: , Previous: , Up: Controlling TGDB   [Contents][Index]

3.2 Commands available during GDB mode

When in GDB mode, the user is in command mode or scroll mode. When in command mode, the user is typing in commands to interact with GDB. When in scroll mode, the user can scroll through the GDB output. You can enter scroll mode by typing page up and quit scroll mode by typing q, i or enter.

The commands available in GDB Mode when in command mode are:

tgdbmodekey

Switch back to source window. This is defaulted to the ESC key.

page up

Move up a page and enter scroll mode.

When in command mode, TGDB will pass along any other keys to the readline library. When readline has determined that a command has been received, it alerts TGDB, and a command is then sent to GDB.

The commands available in GDB Mode when in scroll mode are:

tgdbmodekey

Switch back to source window. This is defaulted to the ESC key.

page up

Move up a page.

page down

Move down a page.

Ctrl-u

Move up 1/2 a page.

Ctrl-d

Move down 1/2 a page.

F11
home key
gg

Go to the beginning of the GDB buffer.

F12
end key
G

Go to the end of the GDB buffer.

k
up arrow
Ctrl-p

Move up a line.

j
down arrow
Ctrl-n

Move down a line.

/

search from current cursor position.

?

reverse search from current cursor position.

n

next forward search.

N

next reverse search.

'.

Jump to the last line.

q
i
enter

Exit scroll mode.


Previous: , Up: Controlling TGDB   [Contents][Index]

3.3 Commands available during the file dialog mode

The file dialog is primarily used to allow the user to find and open a source file that the program they are debugging is made up of. The file dialog will be full screen, and will list each file that the debugged program is made up of. A usual instance of the file dialog would be to open it up from the source window using the o key, and then to search for the file of interest. If you are looking for foo.c type /foo.c, press enter once to finish the regular expression and again to select the file.

The commands available in the file dialog are:

q

Will exit the file dialog, and return to the source window.

k
up arrow

Move up a line.

j
down arrow

Move down a line.

h
left arrow

Move left a line.

l
right arrow

Move right a line.

Ctrl-b
page up

Move up a page.

Ctrl-u

Move up 1/2 a page.

Ctrl-f
page down

Move down a page.

Ctrl-d

Move down 1/2 a page.

gg

Move to the top of the file dialog.

[<number>]G

Move to the bottom of the file dialog or to a line number within the file dialog.

/

search from current cursor position.

?

reverse search from current cursor position.

n

next forward search.

N

next reverse search.

enter

Select the current file.


Next: , Previous: , Up: Top   [Contents][Index]

4 TGDB configuration commands

By default, TGDB stores its user-specific files following the XDG Base Directory Specification. The initialization file is looked for in the following order:

  1. $CGDB_DIR/cgdbrc — if the CGDB_DIR environment variable is set (legacy).
  2. $XDG_CONFIG_HOME/tgdb/tgdbrc — defaults to ~/.config/tgdb/tgdbrc.
  3. ~/.cgdb/cgdbrc — legacy cgdb location, kept for backward compatibility.

The XDG directories used by TGDB are:

Config ($XDG_CONFIG_HOME, default ~/.config)

Initialization scripts: tgdb/tgdbrc.

Data ($XDG_DATA_HOME, default ~/.local/share)

Plugin files, static assets.

Cache ($XDG_CACHE_HOME, default ~/.cache)

Compiled Python bytecode, temporary logs.

State ($XDG_STATE_HOME, default ~/.local/state)

Command history: tgdb/history.

If the tgdbrc file exists, TGDB executes each one of its lines in order. It is as if the user typed in all the commands into the command-line bar after the TUI was initialized.

The following variables change the behavior of some aspect of TGDB. Many of these commands may be abbreviated in some way, and all boolean commands my be negated by appending ‘no’ to the front. For example: :set ignorecase turns on case-insensitive searching; while :set noignorecase turns on case-sensitive searching.

:set asr
:set autosourcereload

If this is on, TGDB will automatically reload a source file if it has changed since TGDB has opened it. If it is off, the file will never be reloaded, until you start TGDB again. The default is on. This feature is useful when you are debugging a program, then you modify a source file, recompile, and type r in GDB’s CLI window. The file in this case will be updated to show the new version. Note, TGDB only looks at the timestamp of the source file to determine if it has changed. So if you modify the source file, and didn’t recompile yet, TGDB will still pick up on the changes.

:set history on
:set history off

Enable or disable saving command history to disk (default: on). The history is stored in $XDG_STATE_HOME/tgdb/history. See Command History for full details.

:set history size N
:set history size unlimited

Limit the command history to N entries (default: 1024). Use unlimited to keep all entries.

:set tgdbmodekey=key

This option is used to determine what key puts TGDB into TGDB Mode. By default, the ESC key is used. key can be any normal key on the keyboard. It can also be any keycode, as long as the keycode notation is used. This option is especially useful when the user wants to use readline in vi mode. If the user types set tgdbmodekey=<PageUp> then the Page Up key will put TGDB into TGDB mode and the ESC key will flow through to readline.

:set color

This option is used to enable or disable color support in TGDB. The default is on. When enabled, TGDB can display color when appropriate. This typically occurs when syntax highlighting source files in the source viewer. When disabled, TGDB will not display colors. It may instead use other terminal attributes for syntax highlighting, including bold and reverse attributes. See the highlight commamnd and look for the ‘cterm’ option.

It should be noted that even when color is enabled in TGDB, if ncurses declares that the terminal does not support colors, TGDB will not use colors.

:set dwc
:set debugwincolor

This option controls if the debug window will display colors or not. The default value is on. When enabled, if GDB or the program being debugged output an ANSI escape code representing color, then TGDB will display the corresponding color instead of the escape code. When disabled, TGDB will display the ANSI escape code in the debug window. See https://en.wikipedia.org/wiki/ANSI_escape_code#Colors to learn more about ANSI escape codes.

:set dis
:set disasm

This option is used to enable or disable showing assembly code in tgdb. The default value is off. When off, TGDB will display the source code to the user. When no source code is available, TGDB will display the assembly code. When this option is enabled, TGDB will display the mixed source and assembly when the source code is enabled and assembly code when the source code is not available. Please note that when assembly mode is displayed, it’s displayed per function instead of per file.

:set eld=style
:set executinglinedisplay=style

Set the executing line display to style. Possible values for style are ‘shortarrow’, ‘longarrow’, ‘highlight’, and ‘block’. Changes the display that is used to indicate the currently executing line in the source viewer. The default value is ‘longarrow’. The ‘shortarrow’ option draws an arrow next to the source line number. The ‘longarrow’ option also draws an arrow next to the source line number, but extends the arrow until the source code. The ‘highlight’ option draws the entire line in inverse video and the ‘block’ option draws an inverse block (cursor) next to the source code being executed.

:set ecl=N
:set expandchildlimit=N

Controls how many items are loaded at once when expanding a variable in the locals pane. When set to 0 (the default), all children are fetched in a single request. When set to a positive integer, only N items are fetched initially; a ‘load more items’ sentinel appears at the bottom of the expanded node and can itself be expanded to fetch the next batch.

For variables whose GDB pretty-printer reports displayhint = "map" (e.g. std::map, std::unordered_map), each item is a key–value pair. GDB internally represents each pair as two alternating children (key then value), so N is multiplied by two when making the GDB request. This means :set expandchildlimit=5 always shows 5 complete key–value pairs regardless of the container type.

:set hls
:set hlsearch

When enabled, if there is a previous search pattern, highlight all its matches. The default is disabled.

:set ic
:set ignorecase

Sets searching case insensitive. The default is off.

:set sbbs
:set scrollbackbuffersize

Set the size of the scrollback buffer for the gdb window to num lines. The default scrollback is 10000 lines.

:set sld=style
:set selectedlinedisplay=style

Set the selected line display to style. Possible values for style are ‘shortarrow’, ‘longarrow’, ‘highlight’, and ‘block’. Changes the display that is used to indicate the currently selected line in the source viewer. The default value is ‘block’. The ‘shortarrow’ option draws an arrow next to the source line number. The ‘longarrow’ option also draws an arrow next to the source line number, but extends the arrow until the source code. The ‘highlight’ option draws the entire line in inverse video and the ‘block’ option draws an inverse block (cursor) next to the source code being selected.

:set showmarks

This option controls if the source window will show marks or not. The default value is on. When enabled, TGDB will show the marks that the user has set in the vertical bar in the source window separating the line number from the source code.

:set sdc
:set showdebugcommands

If this is on, TGDB will show all of the commands that it sends to GDB. If it is off, TGDB will not show the commands that it gives to GDB. The default is off.

:set syn=style
:set syntax=style

Sets the current highlighting mode of the current file to have the syntax style. Possible values for syntax are ‘c’, ‘asm’, ‘d’, ‘go’, ‘ada’, ‘rust’, ‘off’, ‘no’, ‘on’ or ‘yes’. Normally, the user will never have to do this, since TGDB automatically detects what syntax a file should be based on its file extension. However, this feature can currently be useful for debugging purposes. ‘on’ and ‘yes’ enable syntax highlighting based on the source files extension. ‘off’ and ‘no’ disable syntax highlighting. The remaining values set the specific language highlighters independent of the source files extension.

:set to
:set timeout

This option is used along with the ttimeout option to determine the behavior TGDB should have when it receives part of a mapped key sequence or a keyboard code sequence. If this option is on, TGDB will time out on both user defined mappings and on key codes from the keyboard. If this option is off, user defined mappings will not be timed out on. In this case, TGDB will determine if it should time out on key codes from the keyboard by examining the ttimeout option. To determine how TGDB will time out on mappings and key codes, and what time out lengths TGDB will use, please refer to the chart in Key User Interface. The default value for this option is on.

:set tm=delay
:set timeoutlen=delay

This option is used along with the ttimeoutlen option. It represents the number of milliseconds that TGDB should wait for a key code from the keyboard or for a mapped key sequence to complete. If delay is 0, TGDB immediately accepts each character it receives. This will prevent any mappings or key codes to complete. delay may be any value between 0 and 10000, inclusive. The default setting for the delay variable is 1000 (one second).

:set ttimeout

This option is used along with the timeout option to determine the behavior TGDB should have when it receives part of keyboard code sequence. If this option is on, TGDB will time out on key codes from the keyboard. If this option is off, TGDB will determine if it should time out on key codes from the keyboard by examining the timeout option. To determine how TGDB will time out on key codes, what what time length it will use, please refer to the chart in Key User Interface. The default value for this option is on.

:set ttm=delay
:set ttimeoutlen=delay

This option is used along with the ttimeoutlen option. It represents the number of milliseconds that TGDB should wait for a key code from the keyboard. If delay is 0, TGDB immediately accepts each character it receives. This will prevent any key codes to complete. delay may be any value between 0 and 10000, inclusive. The default setting for the delay variable is 100 (one tenth of a second).

:set ts=number
:set tabstop=number

Sets the number of spaces that should be rendered on the screen for TAB characters. The default value for number is 8.

:set wmh=number
:set winminheight=number

The minimal height of a window. Windows will never become smaller than this value. The default value for number is 0. This is useful when winsplitorientation is set to ‘horizontal’.

:set wmw=number
:set winminwidth=number

The minimal width of a window. Windows will never become smaller than this value. The default value for number is 0. This is useful when winsplitorientation is set to ‘vertical’.

:set winsplit=style

Set the split point between source and GDB window. This is especially useful as an init setting in your tgdbrc file. See Configuring TGDB. The possible values for style are ‘src_full’, ‘src_big’, ‘even’, ‘gdb_big’, and ‘gdb_full’.

:set wso=style
:set winsplitorientation=style

Sets the window split orientation to either ‘horizontal’ (which places the source window above and the GDB window below), or ‘vertical’ ( hich places the source window on the left and the GDB window on the right). See Configuring TGDB.

:set ws
:set wrapscan

Searches wrap around the end of file. The default is on.

:set clipboardpath=/path/to/tool

Configures the clipboard tool used for right-click copy/paste in the GDB window. Setting this option does two things immediately:

  1. The directory part of the path is prepended to $PATH (if not already present), so the tool can be found by the clipboard library.
  2. pyperclip.set_clipboard(toolname) is called to select the backend explicitly, bypassing auto-detection.

This is useful when xclip is installed in a non-standard location or when pyperclip’s auto-detection picks the wrong tool. Example:

:set clipboardpath=/usr/local/bin/xclip

Setting an empty value is a no-op. xsel typically works without this option; xclip often requires it.

:set memoryformatter=expression

Selects the formatter that every Memory pane uses to render its bytes. expression is a Python constructor call evaluated in the same namespace used by :python blocks, so user-defined classes loaded via :python are visible here. Setting an empty value restores the built-in default MemoryFormatter(). Examples:

:set memoryformatter=MemoryFormatter(group_bytes=4, row_groups=4)
:set memoryformatter='MemoryFormatter(byte_format="bin", group_bytes=2, row_groups=2)'
:set memoryformatter='MyFormatter(arg1=10, arg2="hello")'

A formatter is any object exposing a callable format(width, height, blocks, hl) that returns a rich.text.Text (or None to render nothing) plus an optional header(width, height, hl) with the same return type. blocks is the raw list-of-dicts payload from GDB’s -data-read-memory-bytes MI command. When the expression fails to evaluate or the resulting object does not satisfy the contract TGDB falls back to the default formatter and reports the error.

The built-in MemoryFormatter accepts these keyword arguments (all optional):

show_header=True

Render a column legend (+0 +1 ... +F) above the dump. Labels are right-aligned within their byte slot and the cadence is widened automatically (stride 2, 4, …) when offsets would otherwise overrun their column.

show_address=True

Prefix each row with its hex address.

show_ascii=True

Append an ASCII column. ASCII is always rendered in the original byte order, regardless of any reverse_* flag.

group_bytes=4

Bytes per visual group (separated by a single space).

row_groups=4

Groups per row. Total bytes per row is group_bytes * row_groups.

reverse_groups=False

Mirror group order so the right-most group holds the lowest-offset bytes; the header legend follows the same ordering.

reverse_bytes=False

Mirror byte order inside each group.

reverse_bits=False

Bit-reverse every byte (0x880x11) in the numeric column. ASCII is unaffected.

byte_format='hex'

One of 'hex', 'bin', 'oct', 'dec'. All bytes use the format’s fixed cell width (2 / 8 / 3 / 3). Decimal uses space padding (so 1 renders as   1); the bit/octal formats use zero padding.

:c
:continue

Send a continue command to GDB.

:down

Send a down command to GDB.

:e
:edit

reloads the file in the source window. this can be useful if the file has changed since it was opened by tgdb.

:f
:finish

Send a finish command to GDB.

:help

This will display the current manual in text format, in the source window.

:logo

This will display one of TGDB’s logos in the source window.

:hi group cterm=attributes ctermfg=color ctermbg=color term=attributes
:highlight group cterm=attributes ctermfg=color ctermbg=color term=attributes

Set the color and attributes for a highlighting group. The syntax mimics vim’s “highlight” command. Possible values for group, attributes and color are available in Highlighting Groups.

You can give as many or as few of the name=value pairs as you wish, in any order. ‘ctermfg’ and ‘ctermbg’ set the foreground and background colors. These can be specified by color number or by using the same color names that vim uses. When TGDB is linked with ncurses, the number you use to represent the color can be between -1 and COLORS. When TGDB is linked against curses, it must be between 0 and COLORS.

cterm’ sets the video attributes for color terminals. ‘term’ sets the video attributes for monochrome terminals. Some examples are,

:highlight Logo cterm=bold,underline ctermfg=Red ctermbg=Black
:highlight Normal cterm=reverse ctermfg=White ctermbg=Black
:hi Normal term=bold
:insert

Move focus to the GDB window.

:n
:next

Send a next command to GDB.

:nexti

Send a nexti command to GDB.

:q
:quit

Quit TGDB.

:r
:run

Send a run command to GDB.

:start

Send a start command to GDB.

:k
:kill

Send a kill command to GDB.

:s
:step

Send a step command to GDB.

:stepi

Send a stepi command to GDB.

:syntax

Turn the syntax on or off.

:u
:until

Send an until command to GDB.

:up

Send an up command to GDB.

:map lhs rhs

Create a new mapping or overwrite an existing mapping in TGDB mode. After the command is run, if lhs is typed, TGDB will get rhs instead. For more details on how to use the map command look in Using Maps.

:unm lhs
:unmap lhs

Delete an existing mapping from TGDB mode. lhs is what was typed in the left hand side when the user created the mapping. For example, if the user typed :map a<Space>b foo then the user could delete the existing mapping with :unmap a<Space>b.

:im lhs rhs
:imap lhs rhs

Create a new mapping or overwrite an existing mapping in GDB mode. After the command is run, if lhs is typed, TGDB will get rhs instead. For more details on how to use the map command look in Using Maps.

:iu lhs
:iunmap lhs

Delete an existing mapping from GDB mode. lhs is what was typed in the left hand side when the user created the mapping. For example, if the user typed :imap a<Space>b foo then the user could delete the existing mapping with :iunmap a<Space>b.

:evaluate expression

Add expression to the Evaluations pane. The pane must already be open (use the workspace context menu → Add → Evaluations). Each entry is re-evaluated automatically on every GDB stop.

:unevaluate N

Remove the N-th entry from the Evaluations pane (1-based index).

:memory address [size]

Show the bytes at address (a hex literal, decimal, or any GDB expression) in a Memory pane. When size is omitted the dump is sized to fit the visible pane and grows on resize.

Memory panes are multi-instance. The command first reuses any already-mounted Memory pane that has no content yet; otherwise it spawns a fresh Memory pane directly below the most recently opened one. At least one Memory pane must already be present in the workspace (add it from the context menu) so that TGDB knows where to anchor the new split.

:disasm [on|off]

Toggle inline disassembly in the source pane. With no argument the current state is flipped. Independent of the dedicated Disasm pane (which can be opened from the workspace context menu).


Next: , Previous: , Up: Top   [Contents][Index]

4.1 Command History

TGDB keeps track of every command you type into the command-line bar during your debugging session so that you can recall or replay them later. History is saved to and loaded from $XDG_STATE_HOME/tgdb/history (default: ~/.local/state/tgdb/history).

Navigating history

While the command-line bar is open (after pressing :), use:

Up

Go to the previous command in the history list. If you have already typed some text before pressing Up, only commands whose text starts with that prefix are shown (prefix-search mode).

Down

Go to the next command in the history list (matching the same prefix). Pressing Down past the last matching entry restores the original input.

History commands

:set history on
:set history off

Enable or disable command history saving. When enabled (the default), each command you type is appended to the history file automatically. When disabled, commands are still available for in-session recall with Up/Down, but nothing is saved to disk.

:set history size N
:set history size unlimited

Set the maximum number of entries kept in the history list. The default is 1024. Use unlimited (or any negative number) to keep all entries. A value of 0 disables history storage entirely. Negative values are rejected with an error.

:save history
:save history filename

Save the commands recorded in the current session to the history file (or to filename if given). Note that the save history command itself appears at the end of the saved file; you may want to edit the file before using :source to replay it.

4.2 User-Defined Commands

TGDB lets you define your own commands that work just like built-in ones. A user-defined command is a name with optional attributes and a replacement template: when the command is invoked the template is expanded and the resulting string is executed as a normal TGDB command.

All user-defined command names must begin with an uppercase letter. The remaining characters may be uppercase letters, lowercase letters, or digits (e.g. Rename, Setcmd, PyLog2). Built-in commands are all lowercase so there is never a collision.

When invoking a user-defined command you may abbreviate it as long as the abbreviation is unambiguous. If two user commands share a common prefix, typing that prefix results in an “Ambiguous command” error.

:command Rename ...
:command Renumber ...
:Rena                  Means “Rename”
:Renu                  Means “Renumber”
:Ren                   Error — ambiguous
:command

List all user-defined commands in a table showing name, -nargs, completion function, and replacement template.

:command prefix

List user-defined commands whose name begins with prefix.

:command [attr…] Name repl

Define a new user command. Name must start with an uppercase letter. repl is the replacement template (see Replacement Text). If a command with the same name already exists an error is reported.

Attributes

Argument handling (-nargs)

By default a user command takes no arguments. Use -nargs to change this:

-nargs=0

No arguments are allowed (the default).

-nargs=1

Exactly one argument is required. The entire text after the command name (including spaces) is treated as the single argument.

-nargs=*

Any number of arguments are allowed (0, 1, or many), separated by whitespace.

-nargs=?

Zero or one argument.

-nargs=+

One or more arguments (at least one is required).

Completion (-complete)

Argument completion can be enabled for a user command:

-complete=FuncName

FuncName must be the name of a Python function that has been defined in TGDB’s Python namespace (via :python or :pyfile) with the following signature:

def FuncName(ArgLead: str, CmdLine: str, CursorPos: int) -> list[str]:
    ...

ArgLead is the leading portion of the argument currently being completed. CmdLine is the full command-line string. CursorPos is the cursor position (character index). The function should return a list of candidate strings.

Pressing Tab in the status bar while typing a user command invokes the completion function. Subsequent Tab presses cycle through the candidates; any other key accepts the current candidate and clears the cycle.

Specifying -complete when -nargs=0 is an error.

Complete user names for a Finger command:
:command -nargs=1 -complete=ListUsers Finger python print(args)

def ListUsers(A, L, P):
    import subprocess
    return subprocess.check_output(["cut","-d:","f1","/etc/passwd"]).decode().splitlines()

Complete Python source files:
:command -nargs=1 -complete=PyFiles EditPy python print(args)

def PyFiles(A, L, P):
    import glob
    return glob.glob(f"{A}*.py")

Replacement Text

The replacement template repl is scanned for <…> escape sequences. All other text is copied unchanged. The expanded string is then executed as a TGDB command. To include a literal < use <lt>.

<args>

The command arguments exactly as supplied (raw text, spaces preserved).

<q-args>

All arguments joined as a single JSON-quoted Python string. Suitable for passing to a Python function or for string concatenation. When there are no arguments this expands to "".

<f-args>

Arguments split on whitespace, each individually JSON-quoted and joined with commas, suitable for use as a Python function argument list. A backslash before a space prevents splitting at that space. A double backslash \\ produces a single backslash. A backslash before any other character is left unchanged. When there are no arguments this expands to nothing (empty string).

<lt>

A literal < character. Use this to include a literal escape sequence in the output, e.g. write <lt>args> to get the text <args> rather than the argument expansion.

Summary table (command :MyCmd one two):

EscapeExpands toTypical use
<args>one twoPass raw text to a built-in command
<q-args>"one two"Pass as a single Python string argument
<f-args>"one","two"Pass as separate Python function arguments
<lt><Literal <

Examples

Alias :Setcmd to :set
:command -nargs=1 Setcmd set <args>
:Setcmd tabstop=4            executes: set tabstop=4

Call a Python function with multiple separate arguments (<f-args>):
:command -nargs=* Mycmd python Myfunc(<f-args>)
:Mycmd arg1 arg2             executes: python Myfunc("arg1","arg2")

Pass all arguments as a single quoted string (<q-args>):
:command -nargs=* PyLog python print("tgdb sent: " + <q-args>)
:PyLog one two               executes: python print("tgdb sent: " + "one two")

Use <lt> to include a literal escape in the output:
:command -nargs=1 ShowTag python print("<lt>args>")
:ShowTag foo                 executes: python print("<args>")

Next: , Previous: , Up: Top   [Contents][Index]

5 TGDB highlighting groups

TGDB is capable of using colors if the terminal it is run in supports them. Until version 0.6.1, TGDB did not allow the user to configure these colors in any way. TGDB color use is now fully configurable.

TGDB’s modeled its use of color highlighting after vim. Any data that will be colored in the terminal is represented by a highlighting group. A highlighting group represents data that should be formatted using foreground colors, background colors and attributes. There are currently several types of highlighting groups in TGDB. There are syntax highlighting groups, which represent syntax highlighting of sources files. There are also User Interface groups, which represent things like TGDB’s logo, or the status bar.

Each highlighting group has a default set of attributes and colors associated with it. You can modify a highlighting groups properties by using the highlight command. See Configuring TGDB.

Note that TGDB currently supports using the same background color the terminal was using before TGDB was started. However, this only works when TGDB was linked with ncurses. If you link TGDB with curses, then TGDB will force the background to Black.


Next: , Up: Highlighting Groups   [Contents][Index]

5.1 The different highlighting groups

Below is a list of all the highlighting groups that CDGB will use when syntax highlighting source files.

Statement

This represents the keywords a language defines.

Type

This represents the types a language defines.

Constant

This represents either a string or numeric value.

Comment

This represents the comments in a source file.

PreProc

This represents the C/C++ preprocessor commands.

Normal

This represents all normal text.

Below is a list of all the highlighting groups that TGDB will use when it is displaying it’s User Interface.

CommandLine

This represents the command-line bar at the bottom of TGDB. The file dialog’s prompt bar also uses this group. The legacy name StatusLine is accepted as an alias for backward compatibility with cgdbrc files.

Search

This represents the group used when displaying the previous search in either the source window, the GDB window in scroll mode, or the file dialog window. This is only used when the hlsearch option is enabled.

IncSearch

This represents the group used when the user is searching in either the source window, the GDB window in scroll mode, or the file dialog window.

SelectedLineArrow

This represents the group used when the user has the selectedlinedisplay set to shortarrow or longarrow.

ExecutingLineArrow

This represents the group used when the user has the executinglinedisplay set to shortarrow or longarrow.

SelectedLineHighlight

This represents the group used when the user has the selectedlinedisplay option set to highlight.

ExecutingLineHighlight

This represents the group used when the user has the executinglinedisplay option set to highlight.

SelectedLineBlock

This represents the group used when the user has the selectedlinedisplay option set to block.

ExecutingLineBlock

This represents the group used when the user has the executinglinedisplay option set to block.

Breakpoint

This represents the group that is used when TGDB displays a line that has a breakpoint set.

DisabledBreakpoint

This represents the group that is used when TGDB displays a line that has a disabled breakpoint set.

SelectedLineNr

This represents the group that is used when TGDB is displaying the currently selected line. This is the line that the cursor is on.

ExecutingLineNr

This represents the group that is used when TGDB is displaying the currently executing line.

ScrollModeStatus

This represents the group that is used when TGDB is displaying the currently selected line number when in GDB Mode and the user is scrolling through the GDB buffer.

Logo

This is the group TGDB uses to display its logo on startup when no source file can be auto detected.

Mark

This is the group TGDB uses to display a mark in the source window. Marks are displayed when the showmarks option is enabled. See the showmarks option for more detail.

MemoryGroup

Background tint applied to every byte-group cell rendered by the default MemoryFormatter in the Memory pane, so that adjacent groups are visually distinguishable without harsh contrast. The header row is intentionally not tinted. Override with :highlight MemoryGroup ctermbg=... (use ctermbg=none to disable the tint entirely).


Next: , Previous: , Up: Highlighting Groups   [Contents][Index]

5.2 The different attributes

TGDB supports many of the attributes that curses provides. It will apply the attributes to the output window, but it is up to the terminal you are using to support such features.

The list of attributes that TGDB currently supports is below.

normal
NONE

This will leave the text normal. Uses A_NORMAL curses attribute.

bold

This will make the text appear bold. Uses A_BOLD curses attribute.

underline

This will underline the text. Uses A_UNDERLINE curses attribute.

reverse
inverse

This will reverse the foreground and background colors. Uses A_REVERSE curses attribute.

standout

This is the best highlighting mode of the terminal. Uses A_STANDOUT curses attribute.

blink

This will cause the text to blink. Uses A_BLINK curses attribute.

dim

This will cause the text to be 1/2 bright. Uses A_DIM curses attribute.


Previous: , Up: Highlighting Groups   [Contents][Index]

5.3 The different colors

TGDB supports several colors, depending on how many colors your terminal supports. Below is a chart of the colors that TGDB provides. The values for each color represent the defines from the curses header file passed to init_pair() to ask curses to create a new color.

COLOR NAMEColorBold attribute
BlackCOLOR_BLACKNo
DarkBlueCOLOR_BLUENo
DarkGreenCOLOR_GREENNo
DarkCyanCOLOR_CYANNo
DarkRedCOLOR_REDNo
DarkMagentaCOLOR_MAGENTANo
Brown, DarkYellowCOLOR_YELLOWNo
LightGray, LightGrey, Gray, GreyCOLOR_WHITENo
DarkGray, DarkGreyCOLOR_BLACKYes
Blue, LightBlueCOLOR_BLUEYes
Green, LightGreenCOLOR_GREENYes
Cyan, LightCyanCOLOR_CYANYes
Red, LightRedCOLOR_REDYes
Magenta, LightMagentaCOLOR_MAGENTAYes
Yellow, LightYellowCOLOR_YELLOWYes
WhiteCOLOR_WHITEYes

Next: , Previous: , Up: Top   [Contents][Index]

6 TGDB key user interface

The Key User Interface is how TGDB receives input from the user. It is usually referred to as the KUI. TGDB simply asks the KUI for the next key the user typed and the KUI will provide it.

The KUI has 2 major responsibilities besides reading normal user input and providing it to TGDB. It needs to detect when the user has typed a user defined map or when the user has hit a special key on the keyboard.

A user defined map, or simply map, is used to change the meaning of typed keys. Some users may refer to this type of functionality as a macro. An example would be map a b. If the user then typed the a character, the KUI would detect that it was mapped to b and return b to TGDB.

When the user types a special key on the keyboard, a key code is sent to TGDB. Typically, keys like HOME, DEL, F1, etc, when pressed will send several characters to the application instead of just one character like a normal key does. These characters combined are called a key sequence. The KUI is responsible for assembling the key sequences back together and reporting to TGDB that a particular key was typed by the user. The ESC key is special because typically most key codes start with that key. This usually gives all key codes a common first key in its key sequence. The KUI uses the terminfo database to determine what key sequences are sent by which keycodes. There are a few commonly used key sequences that are hard coded into TGDB.

A major challenge the KUI has to overcome is determining when a map or a key sequence is received. The KUI sometimes will need to read more than one character to determine this. For example, if the user has 2 maps, map abc def and map abd def, the KUI would have to buffer at least the characters a and b before it could determine if the user was going to type a map. After the next key press, if the user types c or d then a map was received and the KUI will return d e f to TGDB. Otherwise, no map was received and the KUI must return a b to TGDB.

The options timeout, ttimeout, timeoutlen and ttimeoutlen can be used to tell the KUI if it should timeout on partial mappings or key sequences, and if so, how long it should wait before timing out.


Next: , Up: Key User Interface   [Contents][Index]

6.1 The KUI’s time out options

The KUI may be configured to time out on either maps or key sequences.

When the KUI is matching a partial map or key sequence it is capable of timing out. This means it will simply accepts the keys it has received so far if a certain amount of time elapses between key presses. This is obvious when the user is typing a map because the user must press each key individually. For partial key sequences, this is less obvious. That is because the user only presses a single key, but multiple characters are sent to TGDB. The table below describes how the user can configure the KUI to time out on key codes or maps. The timeout and ttimeout options control this functionality.

timeoutttimeoutaction
offoffdo not time out
onon or offtime out on maps and key codes
offontime out on key codes

It is also possible to tell the KUI how long to wait before timing out on a partial match. If timeout is on, then the KUI will wait a certain amount of time for the next character, when matching a map, before it decides a match is no longer possible. If timeout or ttimeout is on, then the KUI will wait a certain amount of time for the next character, when matching a key sequence, before it decides a match is no longer possible. The timeoutlen and ttimeoutlen options can be configured by the user to tell the KUI how long to wait before timing out. The table below describes when the KUI uses which option.

timeoutlenmapping delaykey code delay
< 0timeoutlentimeoutlen
>= 0timeoutlenttimeoutlen

A value of 0 means that the KUI will time out right away. It will not be possible to match a map or key code in this circumstance.

A common problem could be that when the user types a special key like the left or right arrows, TGDB will go into the source mode and not perform the action requested by the user. This typically means that the key code delay is to small. If you try setting the option set ttimeoutlen=1000 TGDB should start acting like the user expects. If not, please report this to the TGDB mailing list.


Next: , Previous: , Up: Key User Interface   [Contents][Index]

6.2 Using maps

TGDB fully supports the use of maps. It allows the user to change the meaning of typed keys. For example, you could have the following map :map <F2> ip<Space>argc<CR>.

When the user is in TGDB mode and they hit F2, the value of the map will be used instead. The i key will first be received by TGDB, and it will put the user into insert mode. Next, TGDB will get p argc followed by the Enter key.

TGDB currently supports two mapping lists. Any mapping that was added with the map command will be used by TGDB when it is in TGDB mode. You can delete a mapping that you have created with the map command with the unmap command. If you want to have mappings in GDB mode, you can use the imap command. Similarly, iunmap will delete a mapping in the imap set. Some examples of this would be

map a<Space>b foo
unmap a<Space>b

imap a<CR>b foo
iunmap a<CR>b

Previous: , Up: Key User Interface   [Contents][Index]

6.3 Understanding keycodes

The above example could use a little more explaining for people unfamiliar with vim maps. The map takes a key and a value. They are separated by a space. Neither the key or value can have a space in them, or it is considered to be the separator between the key and value. If the user desires to have a space in either the key or value part of a map, they can use the keycode notation <Space>. Below is a table of the keycodes in keycode notation form. The keycode notation can be used in any mapping command.

notationmeaning
<Esc>escape key
<Up>cursor up key
<Down>cursor down key
<Left>cursor left key
<Right>cursor right key
<Home>home key
<End>end key
<PageUp>page up key
<PageDown>page down key
<Del>delete key
<Insert>insert key
<Nul>zero
<Bs>backspace key
<Tab>tab key
<NL>linefeed
<FF>formfeed
<CR>carriage return
<Space>space
<Lt>less-than
<Bslash>backslash
<Bar>vertical bar
<F1> - <F12>function keys 1 to 12
<C-...>control keys
<S-...>shift keys

Next: , Previous: , Up: Top   [Contents][Index]

7 Allowing terminal control flow in TGDB

A user can typically set there control flow behavior by using the stty command like so stty -ixon -ixoff. This will disable control flow on the terminal where TGDB is started. If you want to turn control flow back on you can type stty ixon ixoff. If flow control is on, when the user types Ctrl-s, the terminal stops. When the user types Ctrl-q, the terminal restarts. When using readline, the Ctrl-s character usually does a forward search. So, if you want to get this, or other functionality out of readline, simply turn off control flow and start TGDB.


Next: , Previous: , Up: Top   [Contents][Index]

8 Building TGDB from source

Building TGDB from source requires several packages. First, TGDB is hosted at GitHub. You can determine how to get TGDB from source by looking here: https://tgdb.github.io/

Once you have the source to TGDB, now you can begin to build it. You will of course need many packages to build TGDB. Below is a list of all of them that are required to build TGDB.

GNU Make

I have successfully used version 3.79.1, however, older versions probably will work.

GNU GCC

The GNU C compiler. I’ve compiled TGDB with versions as old as 2.9.5, and as new as 4.0.2.

GNU Readline

The GNU readline library version 5.1. TGDB will not work with versions before 5.1. Readline was modified specifically to work with TGDB.

GNU Ncurses

I have successfully used libncurses.so.5 successfully. However, older versions probably will work.

Below is a list of optional packages you will need, if modifying certain files in TGDB.

GNU Flex

If you modify any files with an extension of .l, you will have to have flex installed. I have used flex 2.5.4 to build TGDB.

GNU Texinfo

If you modify doc/tgdb.texinfo, then you will be required to have this package installed. I have used version 4.7 to build the documentation for TGDB.

TGDB uses autoconf/automake to build its configure scripts and makefiles. So, if you change any of the autoconf/automake files, you will need this software installed.

GNU Automake

This has the program aclocal, and must be version Version 1.9.5.

GNU Autoconf

This has the program autoconf, and must be version 2.59.

GNU m4

This has the program m4, and must be version 1.4.3.


Next: , Previous: , Up: Top   [Contents][Index]

Appendix A Copying This Manual

Version 2, June 1991
Copyright © 1989, 1991 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA

Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Preamble

The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software—to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation’s software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.

To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.

For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.

We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.

Also, for each author’s protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors’ reputations.

Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone’s free use or not licensed at all.

The precise terms and conditions for copying, distribution and modification follow.

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  1. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The “Program”, below, refers to any such program or work, and a “work based on the Program” means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term “modification”.) Each licensee is addressed as “you”.

    Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.

  2. You may copy and distribute verbatim copies of the Program’s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.

    You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.

  3. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
    1. You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.
    2. You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.
    3. If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)

    These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.

    Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.

    In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.

  4. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:
    1. Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
    2. Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,
    3. Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)

    The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.

    If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.

  5. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.
  6. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.
  7. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients’ exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.
  8. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.

    If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.

    It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.

    This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.

  9. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.
  10. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

    Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and “any later version”, you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.

  11. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.
    NO WARRANTY
  12. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  13. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

Appendix: How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.

one line to give the program's name and a brief idea of what it does.
Copyright (C) yyyy  name of author

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this when it starts in an interactive mode:

Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.

The hypothetical commands ‘show w’ and ‘show c’ should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than ‘show w’ and ‘show c’; they could even be mouse-clicks or menu items—whatever suits your program.

You should also get your employer (if you work as a programmer) or your school, if any, to sign a “copyright disclaimer” for the program, if necessary. Here is a sample; alter the names:

Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.

signature of Ty Coon, 1 April 1989
Ty Coon, President of Vice

This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License.


Previous: , Up: Top   [Contents][Index]

Index

Jump to:   A   B   C   F   G   H   I   R   S   T   U  
Index Entry  Section

A
attributes: Available Attributes

B
building TGDB: Building TGDB

C
TGDB key user interface: Key User Interface
TGDB mode: Understanding TGDB
colors: Available Colors
commands, in TGDB mode: TGDB Mode
commands, in File Dialog mode: File Dialog Mode
commands, in GDB mode: GDB Mode
configuring TGDB: Configuring TGDB
controlling TGDB: Controlling TGDB

F
file dialog window: File Dialog Window
file dialog window: File Dialog Window

G
GDB mode: Understanding TGDB
GDB window: GDB Window
GDB window: GDB Window

H
highlighting groups: Highlighting Groups
highlighting groups: Available Highlighting Groups

I
invocation TGDB: Invocation

R
regular expression search: Source Window
regular expression search: GDB Window

S
source window: Source Window
status bar: Understanding TGDB
status bar: Status Bar
status bar: Status Bar
switch between windows: Switching Windows

T
terminal control flow: Terminal Control Flow
timeout: Configuring the KUI Time Out Options
timeoutlen: Configuring the KUI Time Out Options
ttimeout: Configuring the KUI Time Out Options
ttimeoutlen: Configuring the KUI Time Out Options

U
understanding TGDB: Understanding TGDB

Jump to:   A   B   C   F   G   H   I   R   S   T   U