summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/coremutex.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-28 05:58:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-28 05:58:54 +0000
commit20f02c63a77bc9b21b0970dba1d808d6c2e8748f (patch)
treece3984621695dcd0d19a975ef8c3ca12fe8e3a48 /cpukit/score/include/rtems/score/coremutex.h
parentWhite space removal. (diff)
downloadrtems-20f02c63a77bc9b21b0970dba1d808d6c2e8748f.tar.bz2
Whitespace removal.
Diffstat (limited to 'cpukit/score/include/rtems/score/coremutex.h')
-rw-r--r--cpukit/score/include/rtems/score/coremutex.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/score/include/rtems/score/coremutex.h b/cpukit/score/include/rtems/score/coremutex.h
index 35007652c8..c047347327 100644
--- a/cpukit/score/include/rtems/score/coremutex.h
+++ b/cpukit/score/include/rtems/score/coremutex.h
@@ -1,4 +1,4 @@
-/**
+/**
* @file rtems/score/coremutex.h
*
* This include file contains all the constants and structures associated
@@ -71,7 +71,7 @@ typedef enum {
*/
CORE_MUTEX_DISCIPLINES_PRIORITY_CEILING
} CORE_mutex_Disciplines;
-
+
/**
* @brief Mutex method return statuses
*
@@ -195,7 +195,7 @@ typedef struct {
#ifdef __RTEMS_STRICT_ORDER_MUTEX__
/*@beief Core Mutex Lock_Chain Struct
*
- * The following defines the control block used to manage lock chain of
+ * The following defines the control block used to manage lock chain of
* priority inheritance mutex.
*/
typedef struct{
@@ -245,7 +245,7 @@ typedef struct {
/** This field is used to manipulate the priority inheritance mutex queue*/
CORE_mutex_order_list queue;
#endif
-
+
} CORE_mutex_Control;
/**
@@ -310,7 +310,7 @@ RTEMS_INLINE_ROUTINE int _CORE_mutex_Seize_interrupt_trylock_body(
/**
* The default is to favor speed and inlining this definitely saves
* a few instructions. This is very important for mutex performance.
- *
+ *
* @param[in] _mutex will attempt to lock
* @param[in] _level_p is the interrupt level holder
*/
@@ -349,16 +349,16 @@ void _CORE_mutex_Seize_interrupt_blocking(
*
* @note If the mutex is called from an interrupt service routine,
* with context switching disabled, or before multitasking,
- * then a fatal error is generated.
+ * then a fatal error is generated.
*
* The logic on this routine is as follows:
*
* * If incorrect system state
- * return an error
+ * return an error
* * If mutex is available without any contention or blocking
* obtain it with interrupts disabled and returned
* * If the caller is willing to wait
- * then they are blocked.
+ * then they are blocked.
*/
#define _CORE_mutex_Seize_body( \