diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1996-04-01 15:24:38 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1996-04-01 15:24:38 +0000 |
commit | 3b99a2c8d5c0aec40323e725b4fe28b4f3953344 (patch) | |
tree | 008f3c37ed9abb0c257fc794c64f318897647cef /byterun/intext.h | |
parent | 3b91622e5db25564b9e8f48ef4a4260fab0b1396 (diff) |
Changement du format pour intern/extern.
Pour les threads, adaptation des I/O a la possibilite d'un GC des
qu'on fait enter_blocking_section.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@716 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/intext.h')
-rw-r--r-- | byterun/intext.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/byterun/intext.h b/byterun/intext.h index 7ffafefea..e127cf398 100644 --- a/byterun/intext.h +++ b/byterun/intext.h @@ -22,7 +22,7 @@ /* Magic number */ -#define Intext_magic_number 0x8495A6BD +#define Intext_magic_number 0x8495A6BE /* Codes for the compact format */ @@ -58,6 +58,10 @@ /* Initial sizes of data structures for extern */ +#ifndef INITIAL_EXTERN_BLOCK_SIZE +#define INITIAL_EXTERN_BLOCK_SIZE 8192 +#endif + #ifndef INITIAL_EXTERN_TABLE_SIZE #define INITIAL_EXTERN_TABLE_SIZE 2039 #endif |