--- title: JS DestroyRuntime slug: Mozilla/Projects/SpiderMonkey/JSAPI_reference/JS_DestroyRuntime tags: - JSAPI Reference - SpiderMonkey translation_of: Mozilla/Projects/SpiderMonkey/JSAPI_reference/JS_DestroyRuntime ---
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>.
{{ LXRSearch("ident", "i", "JS_DestroyRuntime") }}
{{ languages( { "en": "en/JS_DestroyRuntime" } ) }}