diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/core/select.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/core/select.h b/include/osmocom/core/select.h index 2753637a..c2b51a45 100644 --- a/include/osmocom/core/select.h +++ b/include/osmocom/core/select.h @@ -1,6 +1,7 @@ #pragma once #include <osmocom/core/linuxlist.h> +#include <stdbool.h> /*! \defgroup select Select loop abstraction * @{ @@ -35,6 +36,7 @@ struct osmo_fd { unsigned int priv_nr; }; +bool osmo_fd_is_registered(struct osmo_fd *fd); int osmo_fd_register(struct osmo_fd *fd); void osmo_fd_unregister(struct osmo_fd *fd); int osmo_select_main(int polling); |