summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/coremutex.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-06-30 15:03:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-06-30 15:03:03 +0000
commit66a9239a2ceb205d51d307ee9e50c37221f2362c (patch)
tree0566402e211a00efb9423f701301a3b21bec61a7 /cpukit/score/include/rtems/score/coremutex.h
parent2008-06-30 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-66a9239a2ceb205d51d307ee9e50c37221f2362c.tar.bz2
Rename __STRICT_ORDER_MUTEX__ to __RTEMS_STRICT_ORDER_MUTEX__.
Diffstat (limited to 'cpukit/score/include/rtems/score/coremutex.h')
-rw-r--r--cpukit/score/include/rtems/score/coremutex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/coremutex.h b/cpukit/score/include/rtems/score/coremutex.h
index cf46e9265c..cc059fa61d 100644
--- a/cpukit/score/include/rtems/score/coremutex.h
+++ b/cpukit/score/include/rtems/score/coremutex.h
@@ -104,7 +104,7 @@ typedef enum {
*/
CORE_MUTEX_TIMEOUT,
-#ifdef __STRICT_ORDER_MUTEX__
+#ifdef __RTEMS_STRICT_ORDER_MUTEX__
/** This status indicates that a thread not release the mutex which has
* the priority inheritance property in a right order.
*/
@@ -193,7 +193,7 @@ typedef struct {
Priority_Control priority_ceiling;
} CORE_mutex_Attributes;
-#ifdef __STRICT_ORDER_MUTEX__
+#ifdef __RTEMS_STRICT_ORDER_MUTEX__
/*@beief Core Mutex Lock_Chain Struct
*
* The following defines the control block used to manage lock chain of
@@ -242,7 +242,7 @@ typedef struct {
Thread_Control *holder;
/** This element contains the object Id of the holding thread. */
Objects_Id holder_id;
-#ifdef __STRICT_ORDER_MUTEX__
+#ifdef __RTEMS_STRICT_ORDER_MUTEX__
/** This field is used to manipulate the priority inheritance mutex queue*/
CORE_mutex_order_list queue;
#endif