Fixed a small documentation error in port_unlock() implementations.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3452 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2011-10-25 19:56:00 +00:00
parent 2f572f109a
commit befe9632df
10 changed files with 10 additions and 10 deletions

View File

@ -50,7 +50,7 @@ void port_lock(void) {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform more * @details Usually this function just enables interrupts but may perform more
* actions. * actions.
*/ */
void port_unlock(void) { void port_unlock(void) {

View File

@ -347,7 +347,7 @@ struct context {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
* @note In this port it enables both the IRQ and FIQ sources. * @note In this port it enables both the IRQ and FIQ sources.
*/ */

View File

@ -176,7 +176,7 @@ struct intctx {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
*/ */
#define port_unlock() asm volatile ("cpsie i" : : : "memory") #define port_unlock() asm volatile ("cpsie i" : : : "memory")

View File

@ -224,7 +224,7 @@ struct intctx {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
* @note In this port this it lowers the base priority to user level. * @note In this port this it lowers the base priority to user level.
*/ */

View File

@ -248,7 +248,7 @@ struct context {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform more * @details Usually this function just enables interrupts but may perform more
* actions. * actions.
* @note Implemented as global interrupt enable. * @note Implemented as global interrupt enable.
*/ */

View File

@ -217,7 +217,7 @@ struct context {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform more * @details Usually this function just enables interrupts but may perform more
* actions. * actions.
* @note Implemented as global interrupt enable. * @note Implemented as global interrupt enable.
*/ */

View File

@ -174,7 +174,7 @@ struct intctx {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
*/ */
#define port_unlock() __enable_interrupt() #define port_unlock() __enable_interrupt()

View File

@ -215,7 +215,7 @@ struct intctx {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
* @note In this port this it lowers the base priority to user level. * @note In this port this it lowers the base priority to user level.
*/ */

View File

@ -174,7 +174,7 @@ struct intctx {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
*/ */
#define port_unlock() __enable_irq() #define port_unlock() __enable_irq()

View File

@ -218,7 +218,7 @@ struct intctx {
/** /**
* @brief Kernel-unlock action. * @brief Kernel-unlock action.
* @details Usually this function just disables interrupts but may perform * @details Usually this function just enables interrupts but may perform
* more actions. * more actions.
* @note In this port this it lowers the base priority to user level. * @note In this port this it lowers the base priority to user level.
*/ */