From 4fec8fd31e7f1a10490c3cd717f2cd3b4c7e407b Mon Sep 17 00:00:00 2001 From: Oleg Hahm <oleg@hobbykeller.org> Date: Fri, 13 Mar 2015 10:15:41 +0100 Subject: [PATCH] doc: improvement to IPC documentation Per default, doxygen will take only the part until the first dot into account for the brief description. In this case this leads to an ambiguous overview over the IPC send functions. --- core/include/msg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/include/msg.h b/core/include/msg.h index 9916c29cea..b44ee72cd8 100644 --- a/core/include/msg.h +++ b/core/include/msg.h @@ -60,7 +60,7 @@ typedef struct msg { /** - * @brief Send a message. (blocking) + * @brief Send a message (blocking). * * This function sends a message to another thread. The ``msg_t`` structure has * to be allocated (e.g. on the stack) before calling the function and can be @@ -81,7 +81,7 @@ int msg_send(msg_t *m, kernel_pid_t target_pid); /** - * @brief Send a message. (non-blocking) + * @brief Send a message (non-blocking). * * This function sends a message to another thread. The ``msg_t`` structure has * to be allocated (e.g. on the stack) before calling the function and can be -- GitLab