doc: fix comment

This commit is contained in:
Wim Taymans 2023-05-15 12:04:06 +02:00
parent a9d6807ec1
commit fb5c9688a2

View file

@ -24,9 +24,9 @@ Each node also has:
| | | |
+-v---------+ +-v---------+
activation { activation {
status:OK, /* bitmask of NEED_DATA, HAVE_DATA or OK */ status:OK, // bitmask of NEED_DATA, HAVE_DATA or OK
pending:0, /* number of unsatisfied dependencies to be able to run */ pending:0, // number of unsatisfied dependencies to be able to run
required:0 /* number of dependencies with other nodes */ 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 Remote driver nodes therefore have an extra eventfd to wake up the server and signal
the graph start. the graph start.
*/