-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsGetRuntimeMemoryLimit
Limin Zhu edited this page Oct 9, 2015
·
1 revision
Gets the current memory limit for a runtime.
STDAPI_(JsErrorCode)
JsGetRuntimeMemoryLimit(
_In_ JsRuntimeHandle runtime,
_Out_ size_t *memoryLimit);
- runtime: The runtime whose memory limit is to be retrieved.
- memoryLimit: The runtime's current memory limit, in bytes, or -1 if no limit has been set.
The code JsNoError if the operation succeeded, a failure code otherwise.
The memory limit of a runtime can be always be retrieved, regardless of whether or not the runtime is active on another thread.
- Architecture Overview
- Building ChakraCore
- ChakraCore Code Structure
- Contributor Guidance
- Engineering Notes
- Embedding ChakraCore
- Testing ChakraCore
- Getting ChakraCore binaries
- Label Glossary
- Resources
- Roadmap / Release Notes
Want to contribute to this Wiki? Fork it and send a pull request!