-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsGetRuntimeMemoryUsage
Limin Zhu edited this page Oct 9, 2015
·
1 revision
Gets the current memory usage for a runtime.
STDAPI_(JsErrorCode)
JsGetRuntimeMemoryUsage(
_In_ JsRuntimeHandle runtime,
_Out_ size_t *memoryUsage);
- runtime: The runtime whose memory usage is to be retrieved.
- memoryUsage: The runtime's current memory usage, in bytes.
The code JsNoError if the operation succeeded, a failure code otherwise.
Memory usage 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!