From a9642208bc0ff280f987cb2dbc0935145d9c947c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 31 May 2001 15:59:03 +0300 Subject: [PATCH] sync0sync.ic Had deleted inadvertently lock word = 0 from the non-gcc+i86 case in mutex_reset_lock_word innobase/include/sync0sync.ic: Had deleted inadvertently lock word = 0 from the non-gcc+i86 case in mutex_reset_lock_word --- innobase/include/sync0sync.ic | 2 ++ 1 file changed, 2 insertions(+) diff --git a/innobase/include/sync0sync.ic b/innobase/include/sync0sync.ic index ba948ff35cd..b58d024bf6c 100644 --- a/innobase/include/sync0sync.ic +++ b/innobase/include/sync0sync.ic @@ -150,6 +150,8 @@ mutex_reset_lock_word( that our asm code resets eax: tell it explicitly that after the third ':' */ #else + mutex->lock_word = 0; + os_fast_mutex_unlock(&(mutex->os_fast_mutex)); #endif }