diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 1998-04-13 21:54:22 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 1998-04-13 21:54:22 +0000 |
commit | e6e9507d63419640b974263902fafb1564270ce9 (patch) | |
tree | 3ac5b570ded1f373692567d9ea3175badde40e6b /gdb/gdbtk.c | |
parent | 8387d6dfd396b90f8b3393488099b71622a8eaad (diff) | |
download | gdb-e6e9507d63419640b974263902fafb1564270ce9.zip gdb-e6e9507d63419640b974263902fafb1564270ce9.tar.gz gdb-e6e9507d63419640b974263902fafb1564270ce9.tar.bz2 |
Mon Apr 13 16:28:07 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* utils.c: (warning) added call to warning_hook
* source.c: (find_source_lines) modified to call warning in case
of source vs. executable time stamp mismatch. Simplified object
file check. Initialized mtime to 0.
* defs.h: added warning_hook prototype
* top.c: added warning_hook prototype.
* gdbtk.c: (perror_with_name_wrapper) new function to call
perror_with_name safely.
(gdb_loadfile) added source vs. executable time stamp check.
(gdbtk_warning) new function to pass a warning message to the gui.
(gdbtk_ignorable_warning) new function to pass a warning
to the gui. Used only for the src. vs. exec check.
(gdbtk_init) added warning_hook
added include <sys/stat.h>
Diffstat (limited to 'gdb/gdbtk.c')
-rw-r--r-- | gdb/gdbtk.c | 65 |
1 files changed, 64 insertions, 1 deletions
diff --git a/gdb/gdbtk.c b/gdb/gdbtk.c index 4c58c9b..089a0ca 100644 --- a/gdb/gdbtk.c +++ b/gdb/gdbtk.c @@ -35,6 +35,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <winuser.h> #endif +#include <sys/stat.h> + #include <tcl.h> #include <tk.h> #include <itcl.h> @@ -95,6 +97,8 @@ static void null_routine PARAMS ((int)); static void gdbtk_flush PARAMS ((FILE *)); static void gdbtk_fputs PARAMS ((const char *, FILE *)); static int gdbtk_query PARAMS ((const char *, va_list)); +static void gdbtk_warning PARAMS ((const char *, va_list)); +static void gdbtk_ignorable_warning PARAMS ((const char *, va_list)); static char *gdbtk_readline PARAMS ((char *)); static void gdbtk_init PARAMS ((char *)); static void tk_command_loop PARAMS ((void)); @@ -303,6 +307,38 @@ gdbtk_fputs (ptr, stream) in_fputs = 0; } +static void +gdbtk_warning (warning, args) + const char *warning; + va_list args; +{ + char buf[200], *merge[2]; + char *command; + + vsprintf (buf, warning, args); + merge[0] = "gdbtk_tcl_warning"; + merge[1] = buf; + command = Tcl_Merge (2, merge); + Tcl_Eval (interp, command); + Tcl_Free (command); +} + +static void +gdbtk_ignorable_warning (warning, args) + const char *warning; + va_list args; +{ + char buf[200], *merge[2]; + char *command; + + vsprintf (buf, warning, args); + merge[0] = "gdbtk_tcl_ignorable_warning"; + merge[1] = buf; + command = Tcl_Merge (2, merge); + Tcl_Eval (interp, command); + Tcl_Free (command); +} + static int gdbtk_query (query, args) const char *query; @@ -318,7 +354,7 @@ gdbtk_query (query, args) command = Tcl_Merge (2, merge); Tcl_Eval (interp, command); Tcl_Free (command); - + val = atol (interp->result); return val; } @@ -2135,6 +2171,7 @@ gdbtk_init ( argv0 ) command_loop_hook = tk_command_loop; print_frame_info_listing_hook = gdbtk_print_frame_info; query_hook = gdbtk_query; + warning_hook = gdbtk_warning; flush_hook = gdbtk_flush; create_breakpoint_hook = gdbtk_create_breakpoint; delete_breakpoint_hook = gdbtk_delete_breakpoint; @@ -3000,6 +3037,13 @@ full_lookup_symtab(file) return NULL; } +static int +perror_with_name_wrapper (args) + char * args; +{ + perror_with_name (args); + return 1; +} /* gdb_loadfile loads a c source file into a text widget. */ @@ -3024,6 +3068,9 @@ gdb_loadfile (clientData, interp, objc, objv) char *ltable; struct symtab *symtab; struct linetable_entry *le; + long mtime = 0; + struct stat st; + if (objc != 4) { @@ -3047,6 +3094,22 @@ gdb_loadfile (clientData, interp, objc, objv) return TCL_ERROR; } + if (fstat (fp->_file, &st) < 0) + { + catch_errors (perror_with_name_wrapper, "gdbtk: get time stamp", "", + RETURN_MASK_ALL); + return TCL_ERROR; + } + + if (symtab && symtab->objfile && symtab->objfile->obfd) + mtime = bfd_get_mtime(symtab->objfile->obfd); + else if (exec_bfd) + mtime = bfd_get_mtime(exec_bfd); + + if (mtime && mtime < st.st_mtime) + gdbtk_ignorable_warning("Source file is more recent than executable.\n", (va_list)0); + + /* Source linenumbers don't appear to be in order, and a sort is */ /* too slow so the fastest solution is just to allocate a huge */ /* array and set the array entry for each linenumber */ |