overlay: Include the core count in the cpu info line
authorChris Wilson <chris@chris-wilson.co.uk>
Tue, 27 Aug 2013 16:51:11 +0000 (17:51 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Tue, 27 Aug 2013 16:51:51 +0000 (17:51 +0100)
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
overlay/overlay.c

index a457a40..d270f16 100644 (file)
@@ -222,7 +222,9 @@ static void show_gpu_top(struct overlay_context *ctx, struct overlay_gpu_top *gt
        y = PAD + 12 - 2;
        cairo_set_source_rgba(ctx->cr, 0.75, 0.25, 0.75, 1.);
        cairo_move_to(ctx->cr, PAD, y);
-       sprintf(txt, "CPU: %3d%% busy", gt->cpu_top.busy * gt->cpu_top.nr_cpu);
+       len = sprintf(txt, "CPU: %3d%% busy", gt->cpu_top.busy * gt->cpu_top.nr_cpu);
+       if (gt->cpu_top.nr_cpu)
+               sprintf(txt + len, " (%d cores)", gt->cpu_top.nr_cpu);
        cairo_show_text(ctx->cr, txt);
        y += 14;