summaryrefslogtreecommitdiff
path: root/innobase/sync
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2004-03-22 18:11:13 +0200
committerunknown <heikki@hundin.mysql.fi>2004-03-22 18:11:13 +0200
commit76bff7b6b6c32414ff612056dc4aad28579b167b (patch)
tree97ae90f2c65415b0becfa233b6988e18841ab53d /innobase/sync
parent741f55c667169c4ea1f91719a50e5652f2a81f38 (diff)
downloadmariadb-git-76bff7b6b6c32414ff612056dc4aad28579b167b.tar.gz
sync0sync.c:
Actually, assembler is used onnly on 32-bit x86 Win, and no need to exclude Netware specifically innobase/sync/sync0sync.c: Actually, assembler is used onnly on 32-bit x86 Win, and no need to exclude Netware specifically
Diffstat (limited to 'innobase/sync')
-rw-r--r--innobase/sync/sync0sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/sync/sync0sync.c b/innobase/sync/sync0sync.c
index fc312a65942..72f6f0be390 100644
--- a/innobase/sync/sync0sync.c
+++ b/innobase/sync/sync0sync.c
@@ -180,7 +180,7 @@ mutex_create_func(
char* cfile_name, /* in: file name where created */
ulint cline) /* in: file line where created */
{
-#if defined(_WIN32) && defined(UNIV_CAN_USE_X86_ASSEMBLER) && !defined(__NETWARE__)
+#if defined(_WIN32) && defined(UNIV_CAN_USE_X86_ASSEMBLER)
mutex_reset_lock_word(mutex);
#else
os_fast_mutex_init(&(mutex->os_fast_mutex));