2006-11-03 Dick Porter <dick@ximian.com>
[mono.git] / mono / metadata / threadpool.h
index 4c5983f77c9b62cf18ef91e7f79f103b8af8c58d..efb28d34cbba4b6e0b1f75e41713dbfc619345b0 100644 (file)
@@ -5,32 +5,32 @@
 #include <mono/metadata/reflection.h>
 
 /* No managed code here */
-void mono_thread_pool_init (void);
+void mono_thread_pool_init (void) MONO_INTERNAL;
 
 MonoAsyncResult *
 mono_thread_pool_add     (MonoObject *target, MonoMethodMessage *msg, 
-                         MonoDelegate *async_callback, MonoObject *state);
+                         MonoDelegate *async_callback, MonoObject *state) MONO_INTERNAL;
 
 MonoObject *
 mono_thread_pool_finish (MonoAsyncResult *ares, MonoArray **out_args, 
-                        MonoObject **exc);
+                        MonoObject **exc) MONO_INTERNAL;
 
-void mono_thread_pool_cleanup (void);
+void mono_thread_pool_cleanup (void) MONO_INTERNAL;
 
 void
 ves_icall_System_Threading_ThreadPool_GetAvailableThreads (int *workerThreads,
-                                                          int *completionPortThreads);
+                                                          int *completionPortThreads) MONO_INTERNAL;
 
 void
 ves_icall_System_Threading_ThreadPool_GetMaxThreads (int *workerThreads,
-                                                    int *completionPortThreads);
+                                                    int *completionPortThreads) MONO_INTERNAL;
 
 void
 ves_icall_System_Threading_ThreadPool_GetMinThreads (gint *workerThreads, 
-                                                               gint *completionPortThreads);
+                                                               gint *completionPortThreads) MONO_INTERNAL;
 
 MonoBoolean
 ves_icall_System_Threading_ThreadPool_SetMinThreads (gint workerThreads, 
-                                                               gint completionPortThreads);
+                                                               gint completionPortThreads) MONO_INTERNAL;
 
 #endif