summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvoj@mysql.com/april.(none) <>2006-11-07 17:01:34 +0400
committersvoj@mysql.com/april.(none) <>2006-11-07 17:01:34 +0400
commit24c7b22b4dea568a047f1a0a443dbb454d0bd57e (patch)
tree033104e37fa873425ac5a719ca39980ab837defd
parentc6d33b5dc32211872ba7396f3f6a908a1e5b8a1c (diff)
parentc71395ce256d058f47639768c0f3b3b6b3764158 (diff)
downloadmariadb-git-24c7b22b4dea568a047f1a0a443dbb454d0bd57e.tar.gz
Merge mysql.com:/home/svoj/devel/bk/mysql-4.1-engines
into mysql.com:/home/svoj/devel/mysql/BUG23312/mysql-4.1-engines
-rw-r--r--sql/sql_insert.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc
index 283fe571d53..2887d97bd8f 100644
--- a/sql/sql_insert.cc
+++ b/sql/sql_insert.cc
@@ -1181,8 +1181,6 @@ void kill_delayed_threads(void)
delayed_insert *tmp;
while ((tmp=it++))
{
- /* Ensure that the thread doesn't kill itself while we are looking at it */
- pthread_mutex_lock(&tmp->mutex);
tmp->thd.killed=1;
if (tmp->thd.mysys_var)
{
@@ -1201,7 +1199,6 @@ void kill_delayed_threads(void)
}
pthread_mutex_unlock(&tmp->thd.mysys_var->mutex);
}
- pthread_mutex_unlock(&tmp->mutex);
}
VOID(pthread_mutex_unlock(&LOCK_delayed_insert)); // For unlink from list
}