From 76efd7c216445e3787184ae2e88c75bd157dacb6 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Thu, 23 Mar 2023 14:33:21 +0100 Subject: [PATCH] Add FIXME notice in mux select chan_dirty() --- src/emu/mux.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/emu/mux.c b/src/emu/mux.c index b6acf71..2da80db 100644 --- a/src/emu/mux.c +++ b/src/emu/mux.c @@ -195,8 +195,9 @@ mux_init(struct mux *mux, return -1; } - /* Mark the select channel as dirty, so it runs the select - * callback even if it doesn't have a new value */ + /* FIXME: Mark the select channel as dirty, so it runs the select + * callback even if it doesn't have a new value. This hack must be + * removed when we get rid of the delayed connect. */ if (chan_dirty(select) != 0) { err("chan_dirty failed"); return -1;