このテンプレートは廃止されています。使用しないで下さい。
JavaScriptランタイム環境を解放します。 Frees a JavaScript runtime.
構文
void JS_DestroyRuntime(JSRuntime *rt);
Name | Type | Description |
---|---|---|
rt | JSRuntime * | 解放するランタイムThe runtime to destroy. |
説明
JS_DestroyRuntime
は、JavaScriptランタイム環境rt
を解放する関数です。JSAPIの利用を終えた後は必ずJS_DestroyRuntime
を呼び出してください。JS_DestroyRuntime
を呼ぶことで、ガベージコレクションおよびJS_NewRuntime
によって確保されたメモリ領域の解放が行われます。 <code>JS_DestroyRuntime</code> frees the specified the JavaScript runtime environment, <code>rt</code>. Call <code>JS_DestroyRuntime</code> after completing all other JS API calls. <code>JS_DestroyRuntime</code> garbage collects and frees the memory previously allocated by <code>JS_NewRuntime</code>.