summaryrefslogtreecommitdiff
path: root/src/daemon/dlt_daemon_event_handler.c
diff options
context:
space:
mode:
authorSaya Sugiura <ssugiura@jp.adit-jv.com>2019-07-08 16:25:05 +0900
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2019-07-19 14:46:29 +0900
commit0d3cd872a6ab5a14cfb66bb7faa5a6d83ad3c5ea (patch)
treec766a223d631df369d8939c4ec1d38fa1a1b3e67 /src/daemon/dlt_daemon_event_handler.c
parent868d212f5de18d084f5bcb88154ee7bad77ca71b (diff)
downloadDLT-daemon-0d3cd872a6ab5a14cfb66bb7faa5a6d83ad3c5ea.tar.gz
doxygen: Get rid of warnings
Signed-off-by: Saya Sugiura <ssugiura@jp.adit-jv.com>
Diffstat (limited to 'src/daemon/dlt_daemon_event_handler.c')
-rw-r--r--src/daemon/dlt_daemon_event_handler.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/daemon/dlt_daemon_event_handler.c b/src/daemon/dlt_daemon_event_handler.c
index b2af56b..d514c9d 100644
--- a/src/daemon/dlt_daemon_event_handler.c
+++ b/src/daemon/dlt_daemon_event_handler.c
@@ -59,7 +59,7 @@
*
* That ensures that no event will be mis-watched.
*
- * @param pfd: The element to initialize
+ * @param pfd The element to initialize
*/
static void init_poll_fd(struct pollfd *pfd)
{
@@ -104,9 +104,9 @@ int dlt_daemon_prepare_event_handling(DltEventHandler *ev)
* Adds a file descriptor to the descriptor list. If the list is to small,
* increase its size.
*
- * @param ev: The event handler structure, containing the list
- * @param fd: The file descriptor to add
- * @param mask: The mask of event to be watched
+ * @param ev The event handler structure, containing the list
+ * @param fd The file descriptor to add
+ * @param mask The mask of event to be watched
*/
static void dlt_event_handler_enable_fd(DltEventHandler *ev, int fd, int mask)
{
@@ -138,8 +138,8 @@ static void dlt_event_handler_enable_fd(DltEventHandler *ev, int fd, int mask)
* The file descriptor is removed from the descriptor list, the list is
* compressed during the process.
*
- * @param ev: The event handler structure containing the list
- * @param fd: The file descriptor to be removed
+ * @param ev The event handler structure containing the list
+ * @param fd The file descriptor to be removed
*/
static void dlt_event_handler_disable_fd(DltEventHandler *ev, int fd)
{