diff options
author | heikki@donna.mysql.fi <> | 2001-05-31 15:59:03 +0300 |
---|---|---|
committer | heikki@donna.mysql.fi <> | 2001-05-31 15:59:03 +0300 |
commit | d3d9bc9488f26a06a135a3623c43678b4aad9041 (patch) | |
tree | a1012bb2cf48f785fbf76b1d73672a8d07e5f866 /innobase | |
parent | c476d8d122149c02878de51943882565cd63891c (diff) | |
download | mariadb-git-d3d9bc9488f26a06a135a3623c43678b4aad9041.tar.gz |
sync0sync.ic Had deleted inadvertently lock word = 0 from the non-gcc+i86 case in mutex_reset_lock_word
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/include/sync0sync.ic | 2 |
1 files changed, 2 insertions, 0 deletions
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 } |