This article covers features introduced in SpiderMonkey 31
Retrieve a pointer to the parent JSRuntime
.
Syntax
JSRuntime * JS_GetParentRuntime(JSContext *cx);
Name | Type | Description |
---|---|---|
cx |
JSContext * |
The context to query. |
Description
JS_GetParentRuntime
retrieves a pointer to the parent JSRuntime
of the runtime for a specified JSContext
. If the cx
's runtime has no parent runtime, JS_GetParentRuntime
returns cx
's runtime itself.