* Removed all Id tags.
[cacao.git] / src / threads / threads-common.h
index cefa0685a495dbb011bb7f7031da9d57d8facd4d..60fd1155833fc0e19bac467dc2c3287d4c8d4cca 100644 (file)
@@ -22,8 +22,6 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: threads-common.h 7804 2007-04-24 14:29:20Z twisti $
-
 */
 
 
@@ -37,8 +35,6 @@
 
 #include "native/jni.h"
 
-#include "native/include/java_lang_Thread.h"
-
 #if defined(ENABLE_THREADS)
 # include "threads/native/threads.h"
 #else
 #include "vmcore/utf8.h"
 
 
+/* only define the following stuff with thread enabled ************************/
+
+#if defined(ENABLE_THREADS)
+
 /* thread states **************************************************************/
 
 #define THREAD_STATE_NEW              0
 #define MAX_PRIORITY     10
 
 
+#if defined(__LINUX__)
+/* XXX Remove for exact-GC. */
+extern bool threads_pthreads_implementation_nptl;
+#endif
+
+
 /* function prototypes ********************************************************/
 
-threadobject *threads_create_thread(utf *name);
-void          threads_start_javathread(java_lang_Thread *object);
+void          threads_preinit(void);
+
+threadobject *threads_list_first(void);
+threadobject *threads_list_next(threadobject *t);
+s4            threads_list_get_non_daemons(void);
+
+threadobject *threads_thread_new(void);
+void          threads_thread_free(threadobject *t);
+
+bool          threads_thread_start_internal(utf *name, functionptr f);
+void          threads_thread_start(java_lang_Thread *object);
+
+void          threads_thread_print_info(threadobject *t);
+
 ptrint        threads_get_current_tid(void);
-utf          *threads_thread_get_state(threadobject *thread);
+
+void          threads_thread_state_runnable(threadobject *t);
+void          threads_thread_state_waiting(threadobject *t);
+void          threads_thread_state_timed_waiting(threadobject *t);
+void          threads_thread_state_terminated(threadobject *t);
+utf          *threads_thread_get_state(threadobject *t);
+
 bool          threads_thread_is_alive(threadobject *thread);
+
 void          threads_dump(void);
 void          threads_thread_print_stacktrace(threadobject *thread);
 void          threads_print_stacktrace(void);
 
+
+/* implementation specific functions */
+
+void          threads_impl_preinit(void);
+
+void          threads_list_lock(void);
+void          threads_list_unlock(void);
+
+void          threads_mutex_join_lock(void);
+void          threads_mutex_join_unlock(void);
+
+void          threads_set_current_threadobject(threadobject *thread);
+void          threads_impl_thread_new(threadobject *t);
+void          threads_impl_thread_free(threadobject *t);
+void          threads_impl_thread_start(threadobject *thread, functionptr f);
+
+void          threads_yield(void);
+
+#endif /* ENABLE_THREADS */
+
 #endif /* _THREADS_COMMON_H */