summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-05-31 12:18:53 +0300
committermonty@hundin.mysql.fi <>2001-05-31 12:18:53 +0300
commit6a387c7cdf57dfe7f9a136e31ffe463d5cd28efc (patch)
treec974b291b6b89be912a6aa935ac1185bf62dac53 /innobase
parentacf598c50cb84b17d69c576d54e92c4244f0e778 (diff)
downloadmariadb-git-6a387c7cdf57dfe7f9a136e31ffe463d5cd28efc.tar.gz
Added functions for symbolic link handling to make it possible to
backport things from 4.0. This is safe as the functions are not used! Fixed bug in new mutex handling in InnoDB Make allow_break() and dont_break() defines.
Diffstat (limited to 'innobase')
-rw-r--r--innobase/include/sync0sync.ic3
1 files changed, 2 insertions, 1 deletions
diff --git a/innobase/include/sync0sync.ic b/innobase/include/sync0sync.ic
index e23e2b68e14..5a872c6b093 100644
--- a/innobase/include/sync0sync.ic
+++ b/innobase/include/sync0sync.ic
@@ -134,9 +134,10 @@ mutex_reset_lock_word(
__asm XCHG EDX, DWORD PTR [ECX]
#else
mutex->lock_word = 0;
-
+#if !(defined(__GNUC__) && defined(UNIV_INTEL_X86))
os_fast_mutex_unlock(&(mutex->os_fast_mutex));
#endif
+#endif
}
/**********************************************************************