Merged in latest RS6000 diffs from Metin G. Ozisik.
[deliverable/binutils-gdb.git] / gdb / utils.c
index 24fd9ea98b69b3a8f5f207c19e48ce94789f0ad4..974f2ce374f61d4700cb160c45e39904d1afe92d 100644 (file)
@@ -1323,6 +1323,12 @@ _initialize_utils ()
       }
   }
 
+#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
+
+  /* If tere is a better way to determine window size, use it. */
+  SIGWINCH_HANDLER ();
+#endif
+
   /* If the output is not a terminal, don't paginate it.  */
   if (!ISATTY (stdout))
     lines_per_page = UINT_MAX;
@@ -1350,3 +1356,9 @@ _initialize_utils ()
                  &setprintlist),
      &showprintlist);
 }
+
+/* Machine specific function to handle SIGWINCH signal. */
+
+#ifdef  SIGWINCH_HANDLER_BODY
+        SIGWINCH_HANDLER_BODY
+#endif
This page took 0.024422 seconds and 4 git commands to generate.