Merge pull request #4701 from kumpera/jit_improvements
[mono.git] / mono / mini / mini.h
index 730c936de3c6a5103683ada79fe930cabdc9cb7c..191386a06bb5032ddeeb6e57b40e2fc81763080a 100644 (file)
@@ -1202,6 +1202,12 @@ typedef struct {
         * the catch block that caught the ThreadAbortException).
         */
        gpointer abort_exc_stack_threshold;
+
+
+       /*
+        * List of methods being JIT'd in the current thread.
+        */
+       int active_jit_methods;
 } MonoJitTlsData;
 
 /*
@@ -2257,6 +2263,8 @@ enum {
          */
         guint8 *uw_info;
         guint32 uw_info_len;
+        /* Whenever uw_info is owned by this structure */
+        gboolean owns_uw_info;
 } MonoTrampInfo;
 
 typedef void (*MonoInstFunc) (MonoInst *tree, gpointer data);