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

1 auto oldLimit = globalOptions.mwindowMappedLimit;
2 scope(exit) globalOptions.mwindowMappedLimit = oldLimit;
3 
4 globalOptions.mwindowMappedLimit = 1;
5 assert(globalOptions.mwindowMappedLimit == 1);

Meta