From 320a3f140e693a0d8647fd05ec6d2d4cb10c523a Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 30 Dec 2009 13:28:10 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1484 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/kernel.dox | 4 ++-- os/kernel/src/chevents.c | 2 +- os/kernel/src/chmemcore.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'os') diff --git a/os/kernel/kernel.dox b/os/kernel/kernel.dox index 720e71977..0f544d04e 100644 --- a/os/kernel/kernel.dox +++ b/os/kernel/kernel.dox @@ -25,7 +25,7 @@ /** * @defgroup kernel_info Version Numbers and Identification - * Kernel related settings and hooks. + * Kernel related info. * @ingroup kernel */ @@ -97,7 +97,7 @@ * mutexes are recommended for this kind of use) but also have other uses, * queues guards and counters as example.
* Semaphores usually use FIFO queues but it is possible to make them - * order threads by priority by specifying CH_USE_SEMAPHORES_PRIORITY in + * order threads by priority by specifying @p CH_USE_SEMAPHORES_PRIORITY in * @p chconf.h.
* In order to use the Semaphores APIs the @p CH_USE_SEMAPHORES * option must be specified in @p chconf.h.

diff --git a/os/kernel/src/chevents.c b/os/kernel/src/chevents.c index 70cab9d70..64636da66 100644 --- a/os/kernel/src/chevents.c +++ b/os/kernel/src/chevents.c @@ -175,7 +175,7 @@ void chEvtBroadcastI(EventSource *esp) { } /** - * @brief Invokes the event handlers associated with a mask. + * @brief Invokes the event handlers associated to an event flags mask. * * @param[in] mask mask of the events to be dispatched * @param[in] handlers an array of @p evhandler_t. The array must have size diff --git a/os/kernel/src/chmemcore.c b/os/kernel/src/chmemcore.c index 214504df7..65962bde1 100644 --- a/os/kernel/src/chmemcore.c +++ b/os/kernel/src/chmemcore.c @@ -50,7 +50,7 @@ void core_init(void) { } /** - * @brief Allocates a block of memory. + * @brief Allocates a memory block. * @details The size of the returned block is aligned to the alignment * type @p align_t so it is not possible to allocate less than * sizeof(align_t). @@ -70,7 +70,7 @@ void *chCoreAlloc(size_t size) { } /** - * @brief Allocates a block of memory. + * @brief Allocates a memory block. * @details The size of the returned block is aligned to the alignment * type @p align_t so it is not possible to allocate less than * sizeof(align_t). -- cgit v1.2.3