summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coremutex.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-27 08:04:10 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-31 10:14:42 +0200
commitcb8d3e7b8faaf29ada03e5cfd64c6bf095f66fa5 (patch)
treeb1f577c35139570798771249e35b98c4356cc307 /cpukit/score/src/coremutex.c
parentscore: Do not reset resource count during restart (diff)
downloadrtems-cb8d3e7b8faaf29ada03e5cfd64c6bf095f66fa5.tar.bz2
score: Delete CORE_mutex_Control::blocked_count
Diffstat (limited to 'cpukit/score/src/coremutex.c')
-rw-r--r--cpukit/score/src/coremutex.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpukit/score/src/coremutex.c b/cpukit/score/src/coremutex.c
index 3b03fefee1..4cdc7647d1 100644
--- a/cpukit/score/src/coremutex.c
+++ b/cpukit/score/src/coremutex.c
@@ -38,7 +38,6 @@ CORE_mutex_Status _CORE_mutex_Initialize(
the_mutex->Attributes = *the_mutex_attributes;
the_mutex->lock = initial_lock;
- the_mutex->blocked_count = 0;
if ( initial_lock == CORE_MUTEX_LOCKED ) {
the_mutex->nest_count = 1;