mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
* tuiSourceWin.c (tui_display_main): Rename from tuiDisplayMainFunction
and use tuiGetBeginAsmAddress. * tuiSourceWin.h (tui_display_main): Declare. * tui.h (tuiDisplayMainFunction): Remove. * tui-hooks.c (tui_new_objfile_hook): Update.
This commit is contained in:
parent
d2c6833eda
commit
1f393769d4
@ -1,3 +1,11 @@
|
||||
2002-08-25 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* tuiSourceWin.c (tui_display_main): Rename from tuiDisplayMainFunction
|
||||
and use tuiGetBeginAsmAddress.
|
||||
* tuiSourceWin.h (tui_display_main): Declare.
|
||||
* tui.h (tuiDisplayMainFunction): Remove.
|
||||
* tui-hooks.c (tui_new_objfile_hook): Update.
|
||||
|
||||
2002-08-25 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* tuiSource.h (m_tuiShowSourceAsIs): Remove macro.
|
||||
|
@ -71,9 +71,7 @@ static void
|
||||
tui_new_objfile_hook (struct objfile* objfile)
|
||||
{
|
||||
if (tui_active)
|
||||
{
|
||||
tuiDisplayMainFunction ();
|
||||
}
|
||||
tui_display_main ();
|
||||
|
||||
if (tui_target_new_objfile_chain)
|
||||
tui_target_new_objfile_chain (objfile);
|
||||
|
@ -125,7 +125,6 @@ extern void tui_vStartNewLines (va_list);
|
||||
extern TuiStatus tui_set_layout (const char *);
|
||||
|
||||
/* tuiSourceWin.c */
|
||||
extern void tuiDisplayMainFunction (void);
|
||||
extern void tuiUpdateAllExecInfos (void);
|
||||
extern void tui_vAllSetHasBreakAt (va_list);
|
||||
extern void tui_vUpdateSourceWindowsWithAddr (va_list);
|
||||
|
@ -56,30 +56,15 @@
|
||||
#include "tuiDisassem.h"
|
||||
|
||||
|
||||
/*****************************************
|
||||
** EXTERNAL FUNCTION DECLS **
|
||||
******************************************/
|
||||
|
||||
/*****************************************
|
||||
** EXTERNAL DATA DECLS **
|
||||
******************************************/
|
||||
extern int current_source_line;
|
||||
extern struct symtab *current_source_symtab;
|
||||
|
||||
/*
|
||||
** tuiDisplayMainFunction().
|
||||
** Function to display the "main" routine"
|
||||
*/
|
||||
/* Function to display the "main" routine. */
|
||||
void
|
||||
tuiDisplayMainFunction (void)
|
||||
tui_display_main (void)
|
||||
{
|
||||
if ((sourceWindows ())->count > 0)
|
||||
{
|
||||
CORE_ADDR addr;
|
||||
|
||||
addr = parse_and_eval_address ("main");
|
||||
if (addr == (CORE_ADDR) 0)
|
||||
addr = parse_and_eval_address ("MAIN");
|
||||
addr = tuiGetBeginAsmAddress ();
|
||||
if (addr != (CORE_ADDR) 0)
|
||||
{
|
||||
struct symtab_and_line sal;
|
||||
|
@ -22,7 +22,8 @@
|
||||
#ifndef _TUI_SOURCEWIN_H
|
||||
#define _TUI_SOURCEWIN_H
|
||||
|
||||
extern void tuiDisplayMainFunction (void);
|
||||
/* Function to display the "main" routine. */
|
||||
extern void tui_display_main (void);
|
||||
extern void tuiUpdateSourceWindow (TuiWinInfoPtr, struct symtab *, TuiLineOrAddress,
|
||||
int);
|
||||
extern void tuiUpdateSourceWindowAsIs (TuiWinInfoPtr, struct symtab *, TuiLineOrAddress,
|
||||
|
Loading…
Reference in New Issue
Block a user