/* Copyright (c) 2012, 2014 Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef GLOBAL_THREADS_INCLUDED #define GLOBAL_THREADS_INCLUDED #include #include #include class THD; extern mysql_mutex_t LOCK_thread_count; extern mysql_mutex_t LOCK_thd_remove; extern mysql_cond_t COND_thread_count; /** We maintain a set of all registered threads. We provide accessors (global_thread_list_begin, global_thread_list_end) to iterate over all threads. There is no guarantee on the order of THDs when iterating. The caller of these two accessors is expected to hold lock on LOCK_thread_count mutex before calling these accessors inorder to make sure that there are no new threads are added to the system while processing this thread list. We also provide mutators for inserting, and removing an element: > add_global_thread() inserts a THD into the set, and increments the counter. The caller of this function is expected to hold lock on LOCK_thread_count mutex before calling this function to avoid any parallel operations happening on the set. > remove_global_thread() removes a THD from the set, and decrements the counter. This function acquires lock on LOCK_thd_remove followed by lock on LOCK_thread_count. At the end of the function, it releases both the locks. remove_global_thread() also broadcasts COND_thread_count. We also provide a function (copy_global_thread_list) to copy global thread list into a new set. The caller of this function is expected to hold lock on LOCK_thd_remove to avoid any removal from the copied set. This function also acquires lock on LOCK_thread_count before the copy operation to avoid any parallel modification to the set and will release the lock at the end of the function. */ typedef std::set::iterator Thread_iterator; Thread_iterator global_thread_list_begin(); Thread_iterator global_thread_list_end(); void copy_global_thread_list(std::set *new_copy); void add_global_thread(THD *); void remove_global_thread(THD *); /* We maintain a separate counter for the number of threads, which can be accessed without LOCK_thread_count. An un-locked read, means that the result is fuzzy of course. This accessor is used by DBUG printing, by signal handlers, and by the 'mysqladmin status' command. */ uint get_thread_count(); #endif // GLOBAL_THREADS_INCLUDED