-/*--------------------------.
-| Tracking space and time. |
-`--------------------------*/
-
-#if HAVE_MALLOC_H & HAVE_SYS_TIMES_H
-# include <malloc.h>
-# include <sys/times.h>
-#endif
-
-static void
-stage (const char *title)
-{
-#if HAVE_MALLOC_H & HAVE_SYS_TIMES_H
- if (trace_flag)
- {
- struct mallinfo minfo = mallinfo ();
- struct tms tinfo;
- times (&tinfo);
- fprintf (stderr, "STAGE: %30s: %9d (%9d): %ldu %lds\n",
- title,
- minfo.uordblks, minfo.arena,
- tinfo.tms_utime, tinfo.tms_stime);
- }
-#endif
-}