* src/vm/hashtable.h,
[cacao.git] / src / vm / jit / intrp / asmpart.c
index 05ce77d4aad34e0bdd1e123b6ff970b2d8145c7e..3c0a774c31d0b1c199b4d74e6957d5658e6a696b 100644 (file)
@@ -29,7 +29,7 @@
 
    Changes:
 
-   $Id: asmpart.c 4856 2006-04-28 00:46:39Z edwin $
+   $Id: asmpart.c 4921 2006-05-15 14:24:36Z twisti $
 
 */
 
@@ -234,24 +234,16 @@ void intrp_asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out
 {
        s4 sbv, sdv, sv;
 
-#if defined(USE_THREADS)
-#if defined(NATIVE_THREADS)
+#if defined(ENABLE_THREADS)
        compiler_lock();
-#else
-       intsDisable();
-#endif
 #endif
 
        sbv = super->baseval;
        sdv = super->diffval;
        sv  = sub->baseval;
 
-#if defined(USE_THREADS)
-#if defined(NATIVE_THREADS)
+#if defined(ENABLE_THREADS)
        compiler_unlock();
-#else
-       intsRestore();
-#endif
 #endif
 
        out->super_baseval = sbv;