1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

path: show if path is muxed in output

This commit is contained in:
Steffen Vogel 2021-06-19 13:09:22 -04:00
parent 3f456f922b
commit 6a3e5d59af

View file

@ -602,7 +602,7 @@ int path_start(struct vpath *p)
p->logger->info("Starting path {}: #signals={}({}), #hooks={}, #sources={}, "
"#destinations={}, mode={}, poll={}, mask={:b}, rate={}, "
"enabled={}, reversed={}, queuelen={}, original_sequence_no={}",
"enabled={}, reversed={}, muxed={}, queuelen={}, original_sequence_no={}",
path_name(p),
vlist_length(&p->signals),
vlist_length(path_output_signals(p)),
@ -615,6 +615,7 @@ int path_start(struct vpath *p)
p->rate,
path_is_enabled(p) ? "yes" : "no",
path_is_reversed(p) ? "yes" : "no",
path_is_muxed(p) ? "yes" : "no",
p->queuelen,
p->original_sequence_no ? "yes" : "no"
);