White space fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2473 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-12-12 07:36:51 +00:00
parent 7d66301e92
commit 226ca59c9e
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@
/** /**
* @extends Semaphore * @extends Semaphore
* *
* @brief Binary semaphore type. * @brief Binary semaphore type.
*/ */
typedef struct { typedef struct {
Semaphore bs_sem; Semaphore bs_sem;
@ -99,7 +99,7 @@ typedef struct {
/** /**
* @brief Wait operation on the binary semaphore. * @brief Wait operation on the binary semaphore.
* *
* @param[in] bsp pointer to a @p BinarySemaphore structure * @param[in] bsp pointer to a @p BinarySemaphore structure
* @return A message specifying how the invoking thread has been * @return A message specifying how the invoking thread has been
* released from the semaphore. * released from the semaphore.
* @retval RDY_OK if the binary semaphore has been successfully taken. * @retval RDY_OK if the binary semaphore has been successfully taken.

View File

@ -38,7 +38,7 @@
#endif #endif
/** /**
* @brief Structure representing a mailbox object. * @brief Structure representing a mailbox object.
*/ */
typedef struct { typedef struct {
msg_t *mb_buffer; /**< @brief Pointer to the mailbox msg_t *mb_buffer; /**< @brief Pointer to the mailbox

View File

@ -34,7 +34,7 @@
* it is not strictly required being the idle thread a static * it is not strictly required being the idle thread a static
* object. * object.
* *
* @return Pointer to the idle thread, * @return Pointer to the idle thread.
* *
* @api * @api
*/ */

View File

@ -36,7 +36,7 @@
/** /**
* @brief Idle thread working area. * @brief Idle thread working area.
* @see IDLE_THREAD_STACK_SIZE * @see IDLE_THREAD_STACK_SIZE
*/ */
WORKING_AREA(_idle_thread_wa, IDLE_THREAD_STACK_SIZE); WORKING_AREA(_idle_thread_wa, IDLE_THREAD_STACK_SIZE);