tools: print async node state in pw-top

Pass the node async state in the profiler and use this in pw-top to draw
the node with = instead of a + in the tree when it's async.
This commit is contained in:
Wim Taymans 2025-09-15 12:29:57 +02:00
parent 09cd7bf783
commit f89428d9f8
4 changed files with 11 additions and 7 deletions

View file

@ -298,7 +298,8 @@ static void context_do_profile(void *data)
SPA_POD_Long(n->async ? na->prev_finish_time : na->finish_time),
SPA_POD_Int(na->status),
SPA_POD_Fraction(&latency),
SPA_POD_Int(na->xrun_count));
SPA_POD_Int(na->xrun_count),
SPA_POD_Bool(n->async));
if (n->driver) {
spa_pod_builder_prop(&b, SPA_PROFILER_followerClock, 0);