diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2001-07-20 22:26:54 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2001-07-20 22:26:54 +0000 |
commit | 19eb139b7243abc4b725c1836ac3810b274e2637 (patch) | |
tree | c5dea0c9f7e9d45619a5a7fa59d1cd9dcf3328cc /gdb/tui/tuiSourceWin.c | |
parent | 1854bb21902472ab7df44ef2eb095bde62f7208e (diff) | |
download | gdb-19eb139b7243abc4b725c1836ac3810b274e2637.zip gdb-19eb139b7243abc4b725c1836ac3810b274e2637.tar.gz gdb-19eb139b7243abc4b725c1836ac3810b274e2637.tar.bz2 |
* tuiSourceWin.h: Remove unused declarations.
* tuiSourceWin.c (tui_vUpdateSourceWindowsWithAddr): Remove.
(tui_vUpdateSourceWindowsWithLine): Remove.
(tui_vAllSetHasBreakAt): Remove.
* tuiLayout.h (tui_set_layout): Declare.
(tui_vSetLayoutTo): Remove.
(tui_vAddWinToLayout): Remove.
* tuiLayout.c (_tuiLayout_command): Call tui_enable() to force TUI.
(_tuiToggleLayout_command): Remove.
(_tuiToggleSplitLayout_command): Remove.
(_tuiLayout_command): Remove.
(tui_vSetLayoutTo): Remove.
(tui_vAddWinToLayout): Remove.
* tuiDataWin.h (tui_vCheckDataValues): Remove.
* tuiDataWin.c (tui_vCheckDataValues): Remove.
Diffstat (limited to 'gdb/tui/tuiSourceWin.c')
-rw-r--r-- | gdb/tui/tuiSourceWin.c | 53 |
1 files changed, 1 insertions, 52 deletions
diff --git a/gdb/tui/tuiSourceWin.c b/gdb/tui/tuiSourceWin.c index 8edb60b..9098aaf 100644 --- a/gdb/tui/tuiSourceWin.c +++ b/gdb/tui/tuiSourceWin.c @@ -217,22 +217,6 @@ tuiUpdateSourceWindowsWithAddr (CORE_ADDR addr) return; } /* tuiUpdateSourceWindowsWithAddr */ - -/* - ** tui_vUpdateSourceWindowsWithAddr() - ** Update the source window with the address in a va_list - */ -void -tui_vUpdateSourceWindowsWithAddr (va_list args) -{ - Opaque addr = va_arg (args, Opaque); - - tuiUpdateSourceWindowsWithAddr (addr); - - return; -} /* tui_vUpdateSourceWindowsWithAddr */ - - /* ** tuiUpdateSourceWindowsWithLine(). ** Function to ensure that the source and/or disassemly windows @@ -263,23 +247,6 @@ tuiUpdateSourceWindowsWithLine (struct symtab *s, int line) return; } /* tuiUpdateSourceWindowsWithLine */ - -/* - ** tui_vUpdateSourceWindowsWithLine() - ** Update the source window with the line number in a va_list - */ -void -tui_vUpdateSourceWindowsWithLine (va_list args) -{ - struct symtab *s = va_arg (args, struct symtab *); - int line = va_arg (args, int); - - tuiUpdateSourceWindowsWithLine (s, line); - - return; -} /* tui_vUpdateSourceWindowsWithLine */ - - /* ** tuiClearSourceContent(). */ @@ -557,24 +524,6 @@ tuiAllSetHasBreakAt (struct breakpoint *bp, int hasBreak) } /* tuiAllSetHasBreakAt */ -/* - ** tui_vAllSetHasBreakAt() - ** Set or clear the hasBreak flag in all displayed source windows, - ** with params in a va_list - */ -void -tui_vAllSetHasBreakAt (va_list args) -{ - struct breakpoint *bp = va_arg (args, struct breakpoint *); - int hasBreak = va_arg (args, int); - - tuiAllSetHasBreakAt (bp, hasBreak); - - return; -} /* tui_vAllSetHasBreakAt */ - - - /********************************* ** EXECUTION INFO FUNCTIONS ** *********************************/ @@ -769,7 +718,7 @@ tuiUpdateExecInfo (TuiWinInfoPtr winInfo) { tuiSetExecInfoContent (winInfo); tuiShowExecInfoContent (winInfo); -} /* tuiUpdateExecInfo +} /* tuiUpdateExecInfo */ /* |