summaryrefslogtreecommitdiff
path: root/sql/threadpool_common.cc
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@montyprogram.com>2012-11-02 10:43:52 +0100
committerVladislav Vaintroub <wlad@montyprogram.com>2012-11-02 10:43:52 +0100
commit4ffc9c3b01459a2904a7154a6c750d128864fc7b (patch)
treed482bfdf461dc06616cfb23b61c1045a04b1b15d /sql/threadpool_common.cc
parent27bcea09e5230757071d27b91402647a9e0b4713 (diff)
downloadmariadb-git-4ffc9c3b01459a2904a7154a6c750d128864fc7b.tar.gz
MDEV-531 : Warning: Forcing close of thread ... in rpl_binlog_index
Use post_kill_notification in for one_thread_per_connection scheduler, the same as already used in threadpool, to reliably wake a thread stuck in read() or in different poll() variations.
Diffstat (limited to 'sql/threadpool_common.cc')
-rw-r--r--sql/threadpool_common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/threadpool_common.cc b/sql/threadpool_common.cc
index 7e5bbd11c69..6b956768287 100644
--- a/sql/threadpool_common.cc
+++ b/sql/threadpool_common.cc
@@ -257,7 +257,7 @@ static scheduler_functions tp_scheduler_functions=
tp_add_connection, // add_connection
tp_wait_begin, // thd_wait_begin
tp_wait_end, // thd_wait_end
- tp_post_kill_notification, // post_kill_notification
+ post_kill_notification, // post_kill_notification
NULL, // end_thread
tp_end // end
};