summaryrefslogtreecommitdiff
path: root/tpool/task.cc
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-09-14 16:23:23 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2021-09-14 16:23:23 +0300
commit03e4cb2484cc302bef2886dd3d76b3acdf7f5c23 (patch)
treeb47b07bcc986836f9a0324d593623b3a24d273ce /tpool/task.cc
parentf6717c4af66c9a295c789dc30091cac6dc719350 (diff)
downloadmariadb-git-st-10.6-marko2.tar.gz
MDEV-24512 fixup: Remove after_task_callbackst-10.6-marko2
In commit ff5d306e296350e7489dd3decb01bad18d135411 we removed dbug_after_task_callback but forgot to revert the rest of commit bada05a88369051ee60623b006929dd728f704e8.
Diffstat (limited to 'tpool/task.cc')
-rw-r--r--tpool/task.cc18
1 files changed, 1 insertions, 17 deletions
diff --git a/tpool/task.cc b/tpool/task.cc
index 0b5253bc725..81ec88590ce 100644
--- a/tpool/task.cc
+++ b/tpool/task.cc
@@ -1,4 +1,4 @@
-/* Copyright (C) 2019, 2020, MariaDB Corporation.
+/* Copyright (C) 2019, 2021, MariaDB Corporation.
This program is free software; you can redistribute itand /or modify
it under the terms of the GNU General Public License as published by
@@ -21,21 +21,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 - 1301 USA*/
namespace tpool
{
-
-#ifndef DBUG_OFF
-static callback_func_np after_task_callback;
-void set_after_task_callback(callback_func_np cb)
-{
- after_task_callback= cb;
-}
-
-void execute_after_task_callback()
-{
- if (after_task_callback)
- after_task_callback();
-}
-#endif
-
task::task(callback_func func, void* arg, task_group* group) :
m_func(func), m_arg(arg), m_group(group) {}
@@ -50,7 +35,6 @@ void execute_after_task_callback()
{
/* Execute directly. */
m_func(m_arg);
- dbug_execute_after_task_callback();
release();
}
}