1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-11540 Unexpected system threads in the process list

name innodb background threads as such
This commit is contained in:
Sergei Golubchik
2016-12-12 22:33:27 +01:00
parent 85416269c3
commit 1b7a794b73
2 changed files with 4 additions and 0 deletions

View File

@ -796,6 +796,7 @@ THD::THD(my_thread_id id, bool is_wsrep_applier)
mysql_audit_init_thd(this);
net.vio=0;
net.buff= 0;
net.reading_or_writing= 0;
client_capabilities= 0; // minimalistic client
system_thread= NON_SYSTEM_THREAD;
cleanup_done= free_connection_done= abort_on_warning= 0;
@ -4448,6 +4449,7 @@ MYSQL_THD create_thd()
thd->store_globals();
thd->set_command(COM_DAEMON);
thd->system_thread= SYSTEM_THREAD_GENERIC;
thd->security_ctx->host_or_ip="";
add_to_active_threads(thd);
return thd;
}