mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
Move some defines to tui-stack.c
Some #defines in tui-data.h are only used in tui-stack.c, so move them there. 2019-08-20 Tom Tromey <tom@tromey.com> * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX) (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH) (MAX_PID_WIDTH): Move to tui-stack.c. * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX) (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH) (MAX_PID_WIDTH): Move from tui-data.h.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
2019-08-20 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
|
||||||
|
(MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
|
||||||
|
(MAX_PID_WIDTH): Move to tui-stack.c.
|
||||||
|
* tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
|
||||||
|
(MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
|
||||||
|
(MAX_PID_WIDTH): Move from tui-data.h.
|
||||||
|
|
||||||
2019-08-20 Tom Tromey <tom@tromey.com>
|
2019-08-20 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* tui/tui-wingeneral.h (tui_make_window): Don't declare.
|
* tui/tui-wingeneral.h (tui_make_window): Don't declare.
|
||||||
|
@ -108,19 +108,8 @@ public:
|
|||||||
#define MIN_CMD_WIN_HEIGHT 3
|
#define MIN_CMD_WIN_HEIGHT 3
|
||||||
|
|
||||||
/* Strings to display in the TUI status line. */
|
/* Strings to display in the TUI status line. */
|
||||||
#define PROC_PREFIX "In: "
|
|
||||||
#define LINE_PREFIX "L"
|
|
||||||
#define PC_PREFIX "PC: "
|
|
||||||
#define SINGLE_KEY "(SingleKey)"
|
#define SINGLE_KEY "(SingleKey)"
|
||||||
|
|
||||||
/* Minimum/Maximum length of some fields displayed in the TUI status
|
|
||||||
line. */
|
|
||||||
#define MIN_LINE_WIDTH 4 /* Use at least 4 digits for line
|
|
||||||
numbers. */
|
|
||||||
#define MIN_PROC_WIDTH 12
|
|
||||||
#define MAX_TARGET_WIDTH 10
|
|
||||||
#define MAX_PID_WIDTH 19
|
|
||||||
|
|
||||||
/* The kinds of layouts available. */
|
/* The kinds of layouts available. */
|
||||||
enum tui_layout_type
|
enum tui_layout_type
|
||||||
{
|
{
|
||||||
|
@ -39,6 +39,18 @@
|
|||||||
|
|
||||||
#include "gdb_curses.h"
|
#include "gdb_curses.h"
|
||||||
|
|
||||||
|
#define PROC_PREFIX "In: "
|
||||||
|
#define LINE_PREFIX "L"
|
||||||
|
#define PC_PREFIX "PC: "
|
||||||
|
|
||||||
|
/* Minimum/Maximum length of some fields displayed in the TUI status
|
||||||
|
line. */
|
||||||
|
#define MIN_LINE_WIDTH 4 /* Use at least 4 digits for line
|
||||||
|
numbers. */
|
||||||
|
#define MIN_PROC_WIDTH 12
|
||||||
|
#define MAX_TARGET_WIDTH 10
|
||||||
|
#define MAX_PID_WIDTH 19
|
||||||
|
|
||||||
static struct tui_locator_window _locator;
|
static struct tui_locator_window _locator;
|
||||||
|
|
||||||
/* Get a printable name for the function at the address.
|
/* Get a printable name for the function at the address.
|
||||||
|
Reference in New Issue
Block a user