* top.c (command_loop): For space usage display, show both
authorStan Shebs <shebs@codesourcery.com>
Fri, 16 Dec 1994 01:19:40 +0000 (01:19 +0000)
committerStan Shebs <shebs@codesourcery.com>
Fri, 16 Dec 1994 01:19:40 +0000 (01:19 +0000)
        absolute size and the change from before command execution.

gdb/ChangeLog
gdb/top.c

index 70c689b0de292f62162ecc06fba0997a630a1b21..31cc4c555bed75b4cd92a4f77701522eaecdae06 100644 (file)
@@ -1,16 +1,21 @@
+Thu Dec 15 16:55:35 1994  Stan Shebs  <shebs@andros.cygnus.com>
+
+       * top.c (command_loop): For space usage display, show both
+        absolute size and the change from before command execution.
+
 Thu Dec 15 16:40:10 1994  Stu Grossman  (grossman@cygnus.com)
 
-       * defs.h, gdbtk.c (gdbtk_fputs), main.c (gdb_fputs), top.c:  Add stream arg
-       to fputs_unfiltered_hook.  Differentiate stdout from stderr when
-       passing text into tcl land.
-       * defs.h, top.c, utils.c (error):  Add error_hook.
-       * gdbtk.c:  Improve mechanism for capturing output values.
-       * (full_filename):  Remove.
-       * (gdb_cmd call_wrapper gdbtk_init):  Protect all calls from tcl
-       land with call_wrapper.  This prevents longjmps (usually via
-       error()) from jumping out of tcl/tk and leaving things in an
-       indeterminate state.
-       * gdbtk.tcl:  New view option to disable line numbers.  Put catch
+       * defs.h, gdbtk.c (gdbtk_fputs), main.c (gdb_fputs), top.c: Add
+       stream arg to fputs_unfiltered_hook.  Differentiate stdout from
+       stderr when passing text into tcl land.
+       * defs.h, top.c, utils.c (error): Add error_hook.
+       * gdbtk.c: Improve mechanism for capturing output values.
+       (full_filename): Remove.
+       (gdb_cmd call_wrapper gdbtk_init): Protect all calls from tcl land
+       with call_wrapper.  This prevents longjmps (usually via error())
+       from jumping out of tcl/tk and leaving things in an indeterminate
+       state.
+       * gdbtk.tcl: New view option to disable line numbers.  Put catch
        around most uses of gdb_cmd.  Add update button to reg config
        window.  Stop doing immediate updates when selecting registers.
        Change register view values into checkbuttons.
index 8109f516063aeddac3dad50f169fd96c314c8975..7ac7b1b1b668a5f2ab711d5dec228c1bb5ccda2e 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -932,6 +932,7 @@ command_loop ()
   char *command;
   int stdin_is_tty = ISATTY (stdin);
   long time_at_cmd_start;
+  long space_at_cmd_start;
   extern int display_time;
   extern int display_space;
 
@@ -951,6 +952,14 @@ command_loop ()
 
       time_at_cmd_start = get_run_time ();
 
+      if (display_space)
+       {
+         extern char **environ;
+         char *lim = (char *) sbrk (0);
+
+         space_at_cmd_start = (long) (lim - (char *) &environ);
+       }
+
       execute_command (command, instream == stdin);
       /* Do any commands attached to breakpoint we stopped at.  */
       bpstat_do_actions (&stop_bpstat);
@@ -968,9 +977,13 @@ command_loop ()
        {
          extern char **environ;
          char *lim = (char *) sbrk (0);
+         long space_now = lim - (char *) &environ;
+         long space_diff = space_now - space_at_cmd_start;
 
-         printf_unfiltered ("Post-command data size: %ld\n",
-                            (long) (lim - (char *) &environ));
+         printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
+                            space_now,
+                            (space_diff >= 0 ? '+' : '-'),
+                            space_diff);
        }
     }
 }