diff options
author | Pedro Alves <palves@redhat.com> | 2012-03-01 21:08:07 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-03-01 21:08:07 +0000 |
commit | 983fb1048b2680d710715bd24c57e66a69ba9622 (patch) | |
tree | 3fd1b71fe3f295b765d23eae16c0338785b31d77 /gdb | |
parent | 5fbce5dfb1729f6183be7b96b9b2c42ab2e595f4 (diff) | |
download | gdb-983fb1048b2680d710715bd24c57e66a69ba9622.zip gdb-983fb1048b2680d710715bd24c57e66a69ba9622.tar.gz gdb-983fb1048b2680d710715bd24c57e66a69ba9622.tar.bz2 |
2012-03-01 Pedro Alves <palves@redhat.com>
* tui/tui-data.c (set_gen_win_origin): Delete.
* tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
* tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/tui/tui-data.c | 10 | ||||
-rw-r--r-- | gdb/tui/tui-data.h | 2 | ||||
-rw-r--r-- | gdb/tui/tui-regs.c | 13 |
4 files changed, 6 insertions, 25 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 75a56d9..881f598 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2012-03-01 Pedro Alves <palves@redhat.com> + * tui/tui-data.c (set_gen_win_origin): Delete. + * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration. + * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete. + +2012-03-01 Pedro Alves <palves@redhat.com> + * remote.c (encode_actions): Delete declaration. * tracepoint.c (encode_actions): Make extern. * tracepoint.h (encode_actions): Declare. diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c index e7e0749..1f74b3f 100644 --- a/gdb/tui/tui-data.c +++ b/gdb/tui/tui-data.c @@ -311,16 +311,6 @@ tui_set_current_layout_to (enum tui_layout_type new_layout) } -/* Set the origin of the window. */ -void -set_gen_win_origin (struct tui_gen_win_info *win_info, - int x, int y) -{ - win_info->origin.x = x; - win_info->origin.y = y; -} - - /***************************** ** OTHER PUBLIC FUNCTIONS *****************************/ diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index 50619d2..5df73d2 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -341,8 +341,6 @@ extern int tui_term_height (void); extern void tui_set_term_height_to (int); extern int tui_term_width (void); extern void tui_set_term_width_to (int); -extern void tui_set_gen_win_origin (struct tui_gen_win_info *, - int, int); extern struct tui_gen_win_info *tui_locator_win_info_ptr (void); extern struct tui_gen_win_info *tui_source_exec_info_win_ptr (void); extern struct tui_gen_win_info *tui_disassem_exec_info_win_ptr (void); diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c index a093e91..62c0fad 100644 --- a/gdb/tui/tui-regs.c +++ b/gdb/tui/tui-regs.c @@ -131,19 +131,6 @@ tui_first_reg_element_no_inline (int line_no) } -/* Answer the index of the last element in line_no. If line_no is - past the register area (-1) is returned. */ -int -tui_last_reg_element_no_in_line (int line_no) -{ - if ((line_no * TUI_DATA_WIN->detail.data_display_info.regs_column_count) <= - TUI_DATA_WIN->detail.data_display_info.regs_content_count) - return ((line_no + 1) * - TUI_DATA_WIN->detail.data_display_info.regs_column_count) - 1; - else - return (-1); -} - /* Show the registers of the given group in the data window and refresh the window. */ void |