mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
MDEV-34077 scripts/mariadb-install-db: Error in my_thread_global_end(): 1 threads didn't exit
followup for952ab9a596
chery-pick of814dc46748
into 10.5
This commit is contained in:
parent
983e6ca097
commit
cd0356a764
3 changed files with 7 additions and 4 deletions
|
@ -147,7 +147,7 @@ char *guess_malloc_library();
|
|||
void sf_report_leaked_memory(my_thread_id id);
|
||||
int sf_sanity();
|
||||
extern my_thread_id (*sf_malloc_dbug_id)(void);
|
||||
#define SAFEMALLOC_REPORT_MEMORY(X) sf_report_leaked_memory(X)
|
||||
#define SAFEMALLOC_REPORT_MEMORY(X) if (!sf_leaking_memory) sf_report_leaked_memory(X)
|
||||
#else
|
||||
#define SAFEMALLOC_REPORT_MEMORY(X) do {} while(0)
|
||||
#endif
|
||||
|
|
|
@ -220,7 +220,11 @@ void my_thread_global_end(void)
|
|||
fprintf(stderr,
|
||||
"Error in my_thread_global_end(): %d threads didn't exit\n",
|
||||
THR_thread_count);
|
||||
#endif
|
||||
#endif /* HAVE_PTHREAD_KILL */
|
||||
#ifdef SAFEMALLOC
|
||||
/* We know we will have memoryleaks, suppress the leak report */
|
||||
sf_leaking_memory= 1;
|
||||
#endif /* SAFEMALLOC */
|
||||
all_threads_killed= 0;
|
||||
break;
|
||||
}
|
||||
|
@ -234,9 +238,7 @@ void my_thread_global_end(void)
|
|||
that could use them.
|
||||
*/
|
||||
if (all_threads_killed)
|
||||
{
|
||||
my_thread_destroy_internal_mutex();
|
||||
}
|
||||
my_thread_global_init_done= 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -1927,6 +1927,7 @@ extern "C" void unireg_abort(int exit_code)
|
|||
wsrep_sst_auth_free();
|
||||
#endif // WITH_WSREP
|
||||
|
||||
wait_for_signal_thread_to_end();
|
||||
clean_up(!opt_abort && (exit_code || !opt_bootstrap)); /* purecov: inspected */
|
||||
DBUG_PRINT("quit",("done with cleanup in unireg_abort"));
|
||||
mysqld_exit(exit_code);
|
||||
|
|
Loading…
Add table
Reference in a new issue