summaryrefslogtreecommitdiffstats
path: root/byterun/fix_code.h
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1996-05-28 12:41:37 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1996-05-28 12:41:37 +0000
commit280167a6a65e28caec9ef1af78204aea0b2bc6e4 (patch)
tree555e074fac3b1b4f8a2b506bd3065c6c6c126642 /byterun/fix_code.h
parent7714c02c6802469aa3edab124086e9dbfcab081e (diff)
fix_code, meta, interp: remplacement de execute_bytecode par reify_bytecode.
lexing: ne plus faire de callbacks, incompatibles avec les threads. autres: rectifications #includes. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@844 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r--byterun/fix_code.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/byterun/fix_code.h b/byterun/fix_code.h
index 7a66dc62c..652d2d816 100644
--- a/byterun/fix_code.h
+++ b/byterun/fix_code.h
@@ -17,11 +17,16 @@
#define _fix_code_
+#include "config.h"
#include "misc.h"
#include "mlvalues.h"
+#ifdef THREADED_CODE
+void ** instr_table;
+#endif
+
void fixup_endianness P((code_t code, asize_t len));
-void thread_code P((code_t code, asize_t len, void * instr_table[]));
+void thread_code P((code_t code, asize_t len));
#endif