summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-03 15:49:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-03 15:49:58 +0000
commit0147d5ee73ca04e767479374c59f855c5832c246 (patch)
treec09ca60c4e3085bb8b04ec37983a32918f2be446 /cpukit/score/include/rtems
parentChanged extra_system_initialization_stack to extra_mpci_receive_server_stack (diff)
downloadrtems-0147d5ee73ca04e767479374c59f855c5832c246.tar.bz2
Added blocked_count field to allow for optimizations.
Diffstat (limited to 'cpukit/score/include/rtems')
-rw-r--r--cpukit/score/include/rtems/score/coremutex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/coremutex.h b/cpukit/score/include/rtems/score/coremutex.h
index 32e4f40b5e..9f27ae0c1d 100644
--- a/cpukit/score/include/rtems/score/coremutex.h
+++ b/cpukit/score/include/rtems/score/coremutex.h
@@ -119,6 +119,7 @@ typedef struct {
CORE_mutex_Attributes Attributes;
unsigned32 lock;
unsigned32 nest_count;
+ unsigned32 blocked_count;
Thread_Control *holder;
Objects_Id holder_id;
} CORE_mutex_Control;