summaryrefslogtreecommitdiff
path: root/src/til_stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/til_stream.c')
-rw-r--r--src/til_stream.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/til_stream.c b/src/til_stream.c
index a28e138..0ff988c 100644
--- a/src/til_stream.c
+++ b/src/til_stream.c
@@ -696,8 +696,16 @@ static int til_stream_fprint_module_context_cb(void *arg, til_stream_module_cont
FILE *out = arg;
fprintf(out, " %s: %s[%zu]", contexts[0]->setup->path, contexts[0]->module->name, n_module_contexts);
- for (size_t i = 0; i < n_module_contexts; i++)
- fprintf(out, "%s{rc=%u, n_cpus=%u}", i ? ", " : " ", contexts[i]->refcount, contexts[i]->n_cpus);
+ for (size_t i = 0; i < n_module_contexts; i++) {
+ fprintf(out,
+ "%s{rc=%u, n_cpus=%u r=%u rd=%u maxrd=%u}",
+ i ? ", " : " ",
+ contexts[i]->refcount,
+ contexts[i]->n_cpus,
+ contexts[i]->renders_count,
+ contexts[i]->last_render_duration,
+ contexts[i]->max_render_duration);
+ }
fprintf(out, "\n");
return 0;
© All Rights Reserved