Set the maximum amount of memory in bytes that can be mapped at any time by the library.
1 auto oldLimit = globalOptions.mwindowMappedLimit; 2 scope(exit) globalOptions.mwindowMappedLimit = oldLimit; 3 4 globalOptions.mwindowMappedLimit = 1; 5 assert(globalOptions.mwindowMappedLimit == 1);
See Implementation
Set the maximum amount of memory in bytes that can be mapped at any time by the library.