mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix leak from missing my_thread_end
This commit is contained in:
@ -27,7 +27,6 @@ extern uint threadpool_oversubscribe; /* Maximum active threads in group */
|
|||||||
|
|
||||||
|
|
||||||
/* Common thread pool routines, suitable for different implementations */
|
/* Common thread pool routines, suitable for different implementations */
|
||||||
extern void threadpool_cleanup_connection(THD *thd);
|
|
||||||
extern void threadpool_remove_connection(THD *thd);
|
extern void threadpool_remove_connection(THD *thd);
|
||||||
extern int threadpool_process_request(THD *thd);
|
extern int threadpool_process_request(THD *thd);
|
||||||
extern THD* threadpool_add_connection(CONNECT *connect, void *scheduled_data);
|
extern THD* threadpool_add_connection(CONNECT *connect, void *scheduled_data);
|
||||||
|
@ -182,27 +182,13 @@ THD* threadpool_add_connection(CONNECT *connect, void *scheduler_data)
|
|||||||
}
|
}
|
||||||
if (error)
|
if (error)
|
||||||
{
|
{
|
||||||
threadpool_cleanup_connection(thd);
|
threadpool_remove_connection(thd);
|
||||||
thd= NULL;
|
thd= NULL;
|
||||||
}
|
}
|
||||||
worker_context.restore();
|
worker_context.restore();
|
||||||
return thd;
|
return thd;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
threadpool_cleanup_connection() does the bulk of connection shutdown work.
|
|
||||||
Usually called from threadpool_remove_connection(), but rarely it might
|
|
||||||
be called also in the main polling thread if connection initialization fails.
|
|
||||||
*/
|
|
||||||
void threadpool_cleanup_connection(THD *thd)
|
|
||||||
{
|
|
||||||
thd->net.reading_or_writing = 0;
|
|
||||||
end_connection(thd);
|
|
||||||
close_connection(thd, 0);
|
|
||||||
unlink_thd(thd);
|
|
||||||
mysql_cond_broadcast(&COND_thread_count);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void threadpool_remove_connection(THD *thd)
|
void threadpool_remove_connection(THD *thd)
|
||||||
{
|
{
|
||||||
@ -210,7 +196,12 @@ void threadpool_remove_connection(THD *thd)
|
|||||||
worker_context.save();
|
worker_context.save();
|
||||||
thread_attach(thd);
|
thread_attach(thd);
|
||||||
|
|
||||||
threadpool_cleanup_connection(thd);
|
thd->net.reading_or_writing = 0;
|
||||||
|
end_connection(thd);
|
||||||
|
close_connection(thd, 0);
|
||||||
|
unlink_thd(thd);
|
||||||
|
mysql_cond_broadcast(&COND_thread_count);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Free resources associated with this connection:
|
Free resources associated with this connection:
|
||||||
mysys thread_var and PSI thread.
|
mysys thread_var and PSI thread.
|
||||||
|
Reference in New Issue
Block a user