Merge pull request #4248 from Unity-Technologies/boehm-gc-alloc-fixed
[mono.git] / mono / mini / tasklets.h
index 8275628a9e63ab563f0f95b0f92b718c418b8329..615f20a4b9b9a1067ae941b0702b87d748aab880 100644 (file)
@@ -6,7 +6,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 +22,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__ */