diff options
author | unknown <heikki@donna.mysql.fi> | 2001-05-31 15:59:03 +0300 |
---|---|---|
committer | unknown <heikki@donna.mysql.fi> | 2001-05-31 15:59:03 +0300 |
commit | a9642208bc0ff280f987cb2dbc0935145d9c947c (patch) | |
tree | a1012bb2cf48f785fbf76b1d73672a8d07e5f866 /innobase | |
parent | 7176e43d2177006d29348de1d42a318cc104deb8 (diff) | |
download | mariadb-git-a9642208bc0ff280f987cb2dbc0935145d9c947c.tar.gz |
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
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 } |