diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-04-28 15:51:29 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-04-28 15:51:29 +0000 |
commit | 2ef4e1c5bec0a5f19df87b754dfc10e1ca17c18e (patch) | |
tree | 9545f0eef3aaf19cd9885d6cff994b64ecb5aecb /byterun/fix_code.h | |
parent | a2ea30248a84def7446816aecf47bd9a62968eae (diff) |
Support pour le threaded code sur processeurs 64 bits lorsqu'on ne peut pas garantir que le code de l'interprete est dans les 4 premiers gigas
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1515 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r-- | byterun/fix_code.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/byterun/fix_code.h b/byterun/fix_code.h index 5b1e97c70..5efcce96a 100644 --- a/byterun/fix_code.h +++ b/byterun/fix_code.h @@ -31,6 +31,7 @@ void set_instruction P((code_t pos, opcode_t instr)); #ifdef THREADED_CODE extern void ** instr_table; +extern void * instr_base; void thread_code P((code_t code, asize_t len)); #endif |