Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit be8d595

Browse files
committed
Pad page size to reduce probing
1 parent cf5d89f commit be8d595

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyjion/jitinfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ class CorJitInfo : public ICorJitInfo, public JittedCode {
14601460
memset(pEEInfoOut, 0, sizeof(CORINFO_EE_INFO));
14611461
pEEInfoOut->inlinedCallFrameInfo.size = 4;
14621462
#ifdef WINDOWS
1463-
pEEInfoOut->osPageSize = 1000; // Set to the windows default
1463+
pEEInfoOut->osPageSize = 0x1000; // Set to the windows default
14641464
pEEInfoOut->osType = CORINFO_WINNT;
14651465
#else
14661466
pEEInfoOut->osType = CORINFO_UNIX;

0 commit comments

Comments
 (0)