Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / mini / exceptions-wasm.c
1 #include "mini.h"
2
3
4 gpointer
5 mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot)
6 {
7         g_error ("mono_arch_get_call_filter");
8         return NULL;
9 }
10
11 gpointer
12 mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot)
13 {
14         g_error ("mono_arch_get_restore_context");
15         return NULL;
16 }
17
18 gboolean
19 mono_arch_unwind_frame (MonoDomain *domain, MonoJitTlsData *jit_tls, 
20                                                          MonoJitInfo *ji, MonoContext *ctx, 
21                                                          MonoContext *new_ctx, MonoLMF **lmf,
22                                                          mgreg_t **save_locations,
23                                                          StackFrameInfo *frame)
24 {
25         g_error ("mono_arch_unwind_frame");
26         return FALSE;
27 }
28
29 gpointer 
30 mono_arch_get_throw_corlib_exception (MonoTrampInfo **info, gboolean aot)
31 {
32         g_error ("mono_arch_get_throw_corlib_exception");
33         return NULL;
34 }