Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / mini / tasklets.h
index 8275628a9e63ab563f0f95b0f92b718c418b8329..fc6f0b8178a9c6144c778aaa22c9297478b7bf14 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_TASKLETS_H__
 #define __MONO_TASKLETS_H__
 
@@ -6,7 +10,7 @@
 typedef struct {
        MonoLMF *lmf;
        gpointer top_sp;
-       gsize thread_id;
+       MonoNativeThreadId thread_id;
        MonoDomain *domain;
 
        /* the instruction pointer and stack to return to on Restore */
@@ -22,10 +26,10 @@ typedef struct {
 
 typedef void (*MonoContinuationRestore) (MonoContinuation *cont, int state, MonoLMF **lmf_addr);
 
-void  mono_tasklets_init    (void) MONO_INTERNAL;
-void  mono_tasklets_cleanup (void) MONO_INTERNAL;
+void  mono_tasklets_init    (void);
+void  mono_tasklets_cleanup (void);
 
-MonoContinuationRestore mono_tasklets_arch_restore (void) MONO_INTERNAL;
+MonoContinuationRestore mono_tasklets_arch_restore (void);
 
 #endif /* __MONO_TASKLETS_H__ */