このテンプレートは廃止されています。使用しないで下さい。
JSRuntime
へのポインタを取得します。 Retrieves a pointer to the <code>JSRuntime</code>.
構文
JSRuntime * JS_GetRuntime(JSContext *cx);
Name | Type | Description |
---|---|---|
cx | JSContext * | コンテキスト |
説明
JS_GetRuntime
は、JSContext
cx
と関連付けられたJSRuntime
へのポインタを取得する関数です。各コンテキストは、その生成時に指定した (JS_NewContext
を参照) JSRuntime
と関連付けられており、JS_GetRuntime
を使うことでその関連付けを取得することができます。 <code>JS_GetRuntime</code> retrieves a pointer to the <code>JSRuntime</code> with which a specified <code>JSContext</code>, <code>cx</code>, is associated. Each context is associated with a particular <code>JSRuntime</code> when it is created (see <code>JS_NewContext</code>); <code>JS_GetRuntime</code> provides a convenient, programmatic way to look up the association.