(wait_for_tids_or_state_change): We were using the wrong variable
[mono.git] / mono / metadata / exception.h
index 7e07dcb6cf7882cd49435351a973d4da0207cd52..66a8d3a19cd2ad265a765e1a12988e05e41ec4cf 100644 (file)
 #ifndef _MONO_METADATA_EXCEPTION_H_
 #define _MONO_METADATA_EXCEPTION_H_
 
+/* here for compat: should not be used anymore */
+#define MONO_ARCH_SAVE_REGS 
+
 #include <mono/metadata/object.h>
 #include <mono/metadata/image.h>
 
-typedef void (*MonoExceptionClassInitFunc)(MonoClass *klass);
-typedef void (*MonoExceptionObjectInitFunc)(MonoObject *obj, MonoClass *klass);
+G_BEGIN_DECLS
+
+extern MonoException *
+mono_exception_from_name               (MonoImage *image, 
+                                       const char* name_space, 
+                                       const char *name);
+
+MonoException *
+mono_exception_from_token              (MonoImage *image, guint32 token);
+
+MonoException *
+mono_exception_from_name_two_strings (MonoImage *image, const char *name_space,
+                                     const char *name, MonoString *a1, MonoString *a2);
+
+MonoException *
+mono_exception_from_name_msg          (MonoImage *image, const char *name_space,
+                                       const char *name, const char *msg);
+
+extern MonoException *
+mono_exception_from_name_domain        (MonoDomain *domain, MonoImage *image, 
+                                       const char* name_space, 
+                                       const char *name);
+
+MonoException *
+mono_get_exception_divide_by_zero      (void);
+
+MonoException *
+mono_get_exception_security            (void);
+
+MonoException *
+mono_get_exception_arithmetic          (void);
+
+MonoException *
+mono_get_exception_overflow            (void);
+
+MonoException *
+mono_get_exception_null_reference      (void);
+
+MonoException *
+mono_get_exception_execution_engine    (const char *msg);
+
+MonoException *
+mono_get_exception_thread_abort        (void);
+
+MonoException *
+mono_get_exception_thread_state        (const char *msg);
+
+MonoException *
+mono_get_exception_serialization       (const char *msg);
+
+MonoException *
+mono_get_exception_invalid_cast        (void);
+
+MonoException *
+mono_get_exception_invalid_operation (const char *msg);
+
+MonoException *
+mono_get_exception_index_out_of_range  (void);
+
+MonoException *
+mono_get_exception_array_type_mismatch (void);
+
+MonoException *
+mono_get_exception_type_load           (MonoString *type_name);
+
+MonoException *
+mono_get_exception_missing_method      (void);
+
+MonoException *
+mono_get_exception_not_implemented     (const char *msg);
+
+MonoException*
+mono_get_exception_argument_null       (const char *arg);
+
+MonoException *
+mono_get_exception_argument            (const char *arg, const char *msg);
+
+MonoException *
+mono_get_exception_argument_out_of_range (const char *arg);
+
+MonoException *
+mono_get_exception_io                    (const char *msg);
+
+MonoException *
+mono_get_exception_file_not_found        (MonoString *fname);
+
+MonoException *
+mono_get_exception_file_not_found2       (const char *msg, MonoString *fname);
+
+MonoException *
+mono_get_exception_type_initialization (const gchar *type_name, MonoException *inner);
+
+MonoException *
+mono_get_exception_synchronization_lock (const char *msg);
+
+MonoException *
+mono_get_exception_cannot_unload_appdomain (const char *msg);
+
+MonoException *
+mono_get_exception_appdomain_unloaded (void);
+
+MonoException *
+mono_get_exception_bad_image_format (const char *msg);
+
+MonoException *
+mono_get_exception_stack_overflow (void);
 
-extern void
-mono_exception_install_handlers(MonoExceptionClassInitFunc class_init,
-                               MonoExceptionObjectInitFunc obj_init);
+MonoException *
+mono_get_exception_reflection_type_load (MonoArray *types, MonoArray *exceptions);
 
-extern MonoObject *
-mono_exception_from_name   (MonoImage *image, const char* name_space, const char *name);
+G_END_DECLS
 
 #endif /* _MONO_METADATA_EXCEPTION_H_ */