JS_IterateCompartments 编辑
This article covers features introduced in SpiderMonkey 17
Iterate over compartments and call the specified callback function on every compartment.
Syntax
void
JS_IterateCompartments(JSRuntime *rt, void *data,
JSIterateCompartmentCallback compartmentCallback);
Name | Type | Description |
---|---|---|
cx | JSRuntime * | The runtime of the compartments to iterate over. |
data | void * | This will be passed as the data parameter of the JSIterateCompartmentCallback . |
compartmentCallback | JSIterateCompartmentCallback | Callback function (see below). |
Callback function
typedef void
(*JSIterateCompartmentCallback)(JSRuntime *rt, void *data, JSCompartment *compartment);
Name | Type | Description |
---|---|---|
cx | JSRuntime * | The runtime of the compartments. |
data | void * | data parameter passed to JS_IterateCompartments . |
compartmentCallback | JSCompartment * | The pointer to the compartment. |
Description
JS_IterateCompartments
calls compartmentCallback
on every compartment. Beware that there is no guarantee that the compartment will survive after the callback returns. Also, barriers are disabled via the TraceSession.
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论