summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <heikki@donna.mysql.fi>2001-05-31 15:59:03 +0300
committerunknown <heikki@donna.mysql.fi>2001-05-31 15:59:03 +0300
commit1c1af1c5292d7cf9c418e6d784404005ce058a77 (patch)
treea1012bb2cf48f785fbf76b1d73672a8d07e5f866 /innobase
parent439b74179f2363b6086a39fc075985f05e6a1f3b (diff)
downloadmariadb-git-1c1af1c5292d7cf9c418e6d784404005ce058a77.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.ic2
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
}