blob: 1ffb9dee100768a41b97e6e94ce122353fd6646c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
title: JS_Lock
slug: Mozilla/Projects/SpiderMonkey/JSAPI_reference/JS_Lock
tags:
- JSAPI_Reference
- SpiderMonkey
translation_of: Mozilla/Projects/SpiderMonkey/JSAPI_reference/JS_Lock
---
<div>
{{obsolete_header("jsapi12")}}</div>
<p>JS ランタイム環境をロックします。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox">void <strong>JS_Lock</strong>(<a href="/ja/docs/JSRuntime" title="JSRuntime">JSRuntime</a> *rt);
</pre>
<table class="standard-table">
<thead>
<tr>
<th>名称</th>
<th>型</th>
<th>説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>rt</code></td>
<td><code><a href="/ja/docs/JSRuntime" title="JSRuntime">JSRuntime</a> *</code></td>
<td>ロックするランタイムへのポインタ</td>
</tr>
</tbody>
</table>
<h2 id="Description" name="Description">説明</h2>
<p><code>JS_Lock</code> は非推奨 API です。使用しないで下さい。</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{LXRSearch("ident", "i", "JS_Lock")}}</li>
<li><a href="/ja/docs/JS_GetRuntime" title="JS_GetRuntime"><code>JS_GetRuntime</code></a> 、 <a href="/ja/docs/SpiderMonkey/JSAPI_Reference/JS_Unlock"><code>JS_Unlock</code></a></li>
</ul>
|