globalOptions.mwindowMappedLimit

Set the maximum amount of memory in bytes that can be mapped at any time by the library.

  1. size_t mwindowMappedLimit [@property getter]
  2. size_t mwindowMappedLimit [@property setter]
    struct globalOptions
    static @property
    void
    mwindowMappedLimit
    (
    size_t limit
    )

Examples

auto oldLimit = globalOptions.mwindowMappedLimit;
scope(exit) globalOptions.mwindowMappedLimit = oldLimit;

globalOptions.mwindowMappedLimit = 1;
assert(globalOptions.mwindowMappedLimit == 1);

Meta