From 0147d5ee73ca04e767479374c59f855c5832c246 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 3 Jul 2000 15:49:58 +0000 Subject: Added blocked_count field to allow for optimizations. --- c/src/exec/score/src/coremutex.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'c/src/exec/score/src') 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 && -- cgit v1.2.3