diff options
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-data.h | 11 | ||||
-rw-r--r-- | gdb/tui/tui-stack.c | 12 |
2 files changed, 12 insertions, 11 deletions
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index a5ff5e2..dda15d1 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -108,19 +108,8 @@ public: #define MIN_CMD_WIN_HEIGHT 3 /* Strings to display in the TUI status line. */ -#define PROC_PREFIX "In: " -#define LINE_PREFIX "L" -#define PC_PREFIX "PC: " #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. */ enum tui_layout_type { diff --git a/gdb/tui/tui-stack.c b/gdb/tui/tui-stack.c index 001133c..0d41133 100644 --- a/gdb/tui/tui-stack.c +++ b/gdb/tui/tui-stack.c @@ -39,6 +39,18 @@ #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; /* Get a printable name for the function at the address. |