libos: Add FIXME to EventLoop

This commit is contained in:
apio 2024-01-08 19:01:39 +01:00
parent fd402083d7
commit 1223c6c20b
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -44,6 +44,7 @@ namespace os
return *s_the;
}
// FIXME: Support lambdas (by using os::Action). This means that os::Action needs variable parameter support.
Result<void> EventLoop::register_fd_listener(int fd, void (*listener)(int, int))
{
TRY(m_fd_listeners.try_set(fd, listener));