summaryrefslogtreecommitdiff
path: root/lib/igt_aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/igt_aux.c')
-rw-r--r--lib/igt_aux.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index c0ea0e20..7c07b7d0 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -246,6 +246,21 @@ void igt_progress(const char *header, uint64_t i, uint64_t total)
(long long unsigned)i * 100 / total);
}
+/**
+ * igt_print_activity:
+ *
+ * Print a '.' to indicate activity. This is printed without a newline and
+ * only if output is to a terminal.
+ */
+void igt_print_activity(void)
+{
+ if (!isatty(STDOUT_FILENO))
+ return;
+
+ igt_info(".");
+ fflush(stdout);
+}
+
/* mappable aperture trasher helper */
drm_intel_bo **trash_bos;
int num_trash_bos;