/* src/threads/threadlist.hpp - different thread-lists Copyright (C) 2008 CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO This file is part of CACAO. 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; either version 2, or (at your option) any later version. 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 Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _THREADLIST_HPP #define _THREADLIST_HPP #include "config.h" #include #include "threads/thread.hpp" #include "toolbox/list.hpp" /* ThreadList *****************************************************************/ #ifdef __cplusplus using std::list; class ThreadList { private: static Mutex _mutex; // a mutex for all thread lists static list _active_thread_list; // list of active threads static list _free_thread_list; // list of free threads static list _free_index_list; // list of free thread indexes static int32_t _number_of_non_daemon_threads; static inline void remove_from_active_thread_list(threadobject* t); static inline void add_to_free_thread_list(threadobject* t); static inline void add_to_free_index_list(int32_t index); private: // Comparator class. class comparator : public std::binary_function { public: bool operator() (const threadobject* t, const int32_t index) const { return (t->index == index); } }; public: static inline void lock() { _mutex.lock(); } static inline void unlock() { _mutex.unlock(); } // TODO make private static inline void add_to_active_thread_list(threadobject* t); static void dump_threads(); static inline threadobject* get_main_thread(); static threadobject* get_free_thread(); static int32_t get_free_thread_index(); static int32_t get_number_of_non_daemon_threads(); static threadobject* get_thread_by_index(int32_t index); static threadobject* get_thread_from_java_object(java_handle_t* h); static void release_thread(threadobject* t); }; inline void ThreadList::add_to_active_thread_list(threadobject* t) { _active_thread_list.push_back(t); } inline void ThreadList::remove_from_active_thread_list(threadobject* t) { _active_thread_list.remove(t); } inline void ThreadList::add_to_free_thread_list(threadobject* t) { _free_thread_list.push_back(t); } inline void ThreadList::add_to_free_index_list(int32_t index) { _free_index_list.push_back(index); } inline threadobject* ThreadList::get_main_thread() { return _active_thread_list.front(); } #else typedef struct ThreadList ThreadList; void ThreadList_lock(); void ThreadList_unlock(); void ThreadList_dump_threads(); void ThreadList_release_thread(threadobject* t); threadobject* ThreadList_get_free_thread(); int32_t ThreadList_get_free_thread_index(); void ThreadList_add_to_active_thread_list(threadobject* t); threadobject* ThreadList_get_thread_by_index(int32_t index); threadobject* ThreadList_get_main_thread(); threadobject* ThreadList_get_thread_from_java_object(java_handle_t* h); int32_t ThreadList_get_number_of_non_daemon_threads(); #endif #endif // _THREADLIST_HPP /* * These are local overrides for various environment variables in Emacs. * Please do not remove this and leave it at the end of the file, where * Emacs will automagically detect them. * --------------------------------------------------------------------- * Local variables: * mode: c++ * indent-tabs-mode: t * c-basic-offset: 4 * tab-width: 4 * End: * vim:noexpandtab:sw=4:ts=4: */