Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
authorPaolo Molaro <lupus@oddwiz.org>
Thu, 20 Dec 2007 10:41:44 +0000 (10:41 -0000)
committerPaolo Molaro <lupus@oddwiz.org>
Thu, 20 Dec 2007 10:41:44 +0000 (10:41 -0000)
* threads.h, threads-types.h: move functions to the correct header
(fixes bug#349952).

svn path=/trunk/mono/; revision=91688

mono/metadata/ChangeLog
mono/metadata/threads-types.h
mono/metadata/threads.h

index c0bef608221f38be62a1225496933d8f70c1de8c..dcd9d95d186dd6ca20c9127e56cb7a965a180aa3 100644 (file)
@@ -1,3 +1,8 @@
+Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
+
+       * threads.h, threads-types.h: move functions to the correct header
+       (fixes bug#349952).
+
 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
 
        * verify.c (mono_method_verify): proper verification
index 326080add4465602dd2dad55cbe64908291a7238..86b1fafe1d09ccf37ce7cf381a589818445bbca3 100644 (file)
@@ -134,6 +134,10 @@ void mono_thread_free_local_slot_values (int slot, MonoBoolean thread_local) MON
 extern void mono_thread_current_check_pending_interrupt (void) MONO_INTERNAL;
 extern void mono_thread_get_stack_bounds (guint8 **staddr, size_t *stsize) MONO_INTERNAL;
 
+extern void mono_thread_set_state (MonoThread *thread, MonoThreadState state) MONO_INTERNAL;
+extern void mono_thread_clr_state (MonoThread *thread, MonoThreadState state) MONO_INTERNAL;
+extern gboolean mono_thread_test_state (MonoThread *thread, MonoThreadState test) MONO_INTERNAL;
+
 extern void mono_thread_init_apartment_state (void) MONO_INTERNAL;
 extern void mono_thread_cleanup_apartment_state (void) MONO_INTERNAL;
 
index 3303d9eb0cf639e46c9d5c8f79c9018cb870e716..fe3f721a0116a137c90354569ce2e3ff4b658cf5 100644 (file)
@@ -67,10 +67,6 @@ extern void mono_thread_interruption_checkpoint (void);
 extern void mono_thread_force_interruption_checkpoint (void);
 extern gint32* mono_thread_interruption_request_flag (void);
 
-extern void mono_thread_set_state (MonoThread *thread, MonoThreadState state);
-extern void mono_thread_clr_state (MonoThread *thread, MonoThreadState state);
-extern gboolean mono_thread_test_state (MonoThread *thread, MonoThreadState test);
-
 G_END_DECLS
 
 #endif /* _MONO_METADATA_THREADS_H_ */