# HG changeset patch # User wenzelm # Date 1656622187 -7200 # Node ID 3b5a2e01b73b4125b8643cf03406d52b30776ad9 # Parent b8bd0189757857bde3a9d7f0f7618d81447ccb1e clarified heap alignment, to make it potentially more stable on macOS; diff -r b8bd01897578 -r 3b5a2e01b73b src/Pure/General/bytes.ML --- a/src/Pure/General/bytes.ML Wed Jun 29 22:33:08 2022 +0200 +++ b/src/Pure/General/bytes.ML Thu Jun 30 22:49:47 2022 +0200 @@ -48,7 +48,7 @@ (* primitive operations *) -val chunk_size = 1024 * 1024; +val chunk_size = 1024 * 1024 - 8; abstype T = Bytes of {buffer: string list, chunks: string list, m: int (*buffer size*), n: int (*chunks size*)}