From 11567e318e6a05936bab135e6ed90726583ab031 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Tue, 27 Aug 2013 17:51:11 +0100 Subject: overlay: Include the core count in the cpu info line Signed-off-by: Chris Wilson --- overlay/overlay.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'overlay') diff --git a/overlay/overlay.c b/overlay/overlay.c index a457a409..d270f16b 100644 --- a/overlay/overlay.c +++ b/overlay/overlay.c @@ -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; -- cgit v1.2.3