From fb5c9688a295efea6f50a480bd77a21932732d84 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 15 May 2023 12:04:06 +0200 Subject: [PATCH] doc: fix comment --- doc/pipewire-scheduling.dox | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/pipewire-scheduling.dox b/doc/pipewire-scheduling.dox index 87b2f4564..bc73b0747 100644 --- a/doc/pipewire-scheduling.dox +++ b/doc/pipewire-scheduling.dox @@ -24,9 +24,9 @@ Each node also has: | | +-v---------+ activation { - status:OK, /* bitmask of NEED_DATA, HAVE_DATA or OK */ - pending:0, /* number of unsatisfied dependencies to be able to run */ - required:0 /* number of dependencies with other nodes */ + status:OK, // bitmask of NEED_DATA, HAVE_DATA or OK + pending:0, // number of unsatisfied dependencies to be able to run + required:0 // number of dependencies with other nodes } ``` @@ -188,5 +188,4 @@ Currently the graph start cycle is managed by the server. Remote driver nodes therefore have an extra eventfd to wake up the server and signal the graph start. - - +*/