diff --git a/main/io.c b/main/io.c index 7614145a60b2510d20e73605d018a365b215e804..209f279264f3be5064ba5e68c39024a2c89e1b8b 100644 --- a/main/io.c +++ b/main/io.c @@ -62,7 +62,7 @@ struct io_rec { #define GROW_SHRINK_SIZE 512 -/*! \brief Global IO variables are now in a struct in order to be +/*! \brief Global IO variables are now in a struct in order to be made threadsafe */ struct io_context { struct pollfd *fds; /*!< Poll structure */ @@ -73,7 +73,7 @@ struct io_context { int needshrink; /*!< Whether something has been deleted */ }; -/* Create an I/O context */ +/*! \brief Create an I/O context */ struct io_context *io_context_create(void) { struct io_context *tmp = NULL;