*** empty log message ***
[cacao.git] / asmpart.h
index a8ff334c987701e0a1196daccb599792f5cde9b3..0ce6e85e76c189eee20118e32c25b8cca6922db9 100644 (file)
--- a/asmpart.h
+++ b/asmpart.h
@@ -29,7 +29,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: asmpart.h 1112 2004-05-31 15:47:20Z jowenn $
+   $Id: asmpart.h 1296 2004-07-10 17:02:15Z stefan $
 
 */
 
@@ -76,6 +76,12 @@ java_objectheader *asm_calljavafunction2(methodinfo *m, u4 count, u4 size, void
 jdouble asm_calljavafunction2double(methodinfo *m, u4 count, u4 size, void *callblock);
 jlong asm_calljavafunction2long(methodinfo *m, u4 count, u4 size, void *callblock);
 
+/* We need these two labels in codegen.inc to add the asm_calljavafunction*'s
+   into the methodtable */
+#if defined(__I386__) || defined(__X86_64__)
+void calljava_xhandler();
+void calljava_xhandler2();
+#endif
 
 
 void asm_handle_exception();
@@ -98,9 +104,11 @@ void asm_builtin_trace();
 void asm_builtin_exittrace();
 
 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
-extern threadcritnode *asm_criticalsections;
+extern threadcritnode asm_criticalsections;
 #endif
-void asm_getclassvalues_atomic(vftbl *super, vftbl *sub, castinfo *out);
+
+void asm_getclassvalues_atomic(vftbl_t *super, vftbl_t *sub, castinfo *out);
+
 
 #endif /* _ASMPART_H */