mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
set MaxNativeCallFootprint to 5 on 32-bit systems
Thunks such as divideLong now take a pointer and two int64_t arguments, which amounts to 5 words of stack space on a 32-bit system.
This commit is contained in:
parent
ed8a72af9e
commit
8091803b59
@ -52,7 +52,7 @@ const bool Continuations = true;
|
||||
const bool Continuations = false;
|
||||
#endif
|
||||
|
||||
const unsigned MaxNativeCallFootprint = 4;
|
||||
const unsigned MaxNativeCallFootprint = BytesPerWord == 8 ? 4 : 5;
|
||||
|
||||
const unsigned InitialZoneCapacityInBytes = 64 * 1024;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user