Xamarin Public Jenkins (auto-signing) 966bba02bb Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
2017-06-07 13:16:24 +00:00

36 lines
722 B
C

/**
* \file
*/
#ifndef __MONO_TASKLETS_H__
#define __MONO_TASKLETS_H__
#include "mini.h"
typedef struct {
MonoLMF *lmf;
gpointer top_sp;
MonoNativeThreadId thread_id;
MonoDomain *domain;
/* the instruction pointer and stack to return to on Restore */
gpointer return_ip;
gpointer return_sp;
/* the saved stack information */
int stack_alloc_size;
int stack_used_size;
/* pointer to GC memory */
gpointer saved_stack;
} MonoContinuation;
typedef void (*MonoContinuationRestore) (MonoContinuation *cont, int state, MonoLMF **lmf_addr);
void mono_tasklets_init (void);
void mono_tasklets_cleanup (void);
MonoContinuationRestore mono_tasklets_arch_restore (void);
#endif /* __MONO_TASKLETS_H__ */