summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/src/coremutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/score/src/coremutex.c')
-rw-r--r--c/src/exec/score/src/coremutex.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/c/src/exec/score/src/coremutex.c b/c/src/exec/score/src/coremutex.c
index a5842efb91..ef2c21adc6 100644
--- a/c/src/exec/score/src/coremutex.c
+++ b/c/src/exec/score/src/coremutex.c
@@ -54,8 +54,9 @@ void _CORE_mutex_Initialize(
initial_lock == CORE_MUTEX_UNLOCKED );
*/
- the_mutex->Attributes = *the_mutex_attributes;
- the_mutex->lock = initial_lock;
+ the_mutex->Attributes = *the_mutex_attributes;
+ the_mutex->lock = initial_lock;
+ the_mutex->blocked_count = 0;
#if 0
if ( !the_mutex_attributes->only_owner_release &&