JS_MapGCRoots 编辑

Obsolete since JSAPI 19
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

Perform some action for each object in a JSRuntime's GC root set.

Syntax

uint32
JS_MapGCRoots(JSRuntime *rt, JSGCRootMapFun map, void *data);

Callback syntax

#define JS_MAP_GCROOT_NEXT      0       /* continue mapping entries */
#define JS_MAP_GCROOT_STOP      1       /* stop mapping entries */
#define JS_MAP_GCROOT_REMOVE    2       /* remove and free the current entry */

typedef int (*JSGCRootMapFun)(void *rp, const char *name, void *data);

Description

Call JS_MapGCRoots to map the GC's roots table using map(rp, name, data). The root is pointed at by rp; if the root is unnamed, name is null; data is supplied from the third parameter to JS_MapGCRoots.

The map function should return JS_MAP_GCROOT_REMOVE to cause the currently enumerated root to be removed. To stop enumeration, return JS_MAP_GCROOT_STOP. To continue mapping, return JS_MAP_GCROOT_NEXT. These constants are flags; you can OR them together.

This function acquires and releases rt's GC lock around the mapping of the roots table, so the map function should run to completion in as few cycles as possible. The map function cannot call JS_GC, JS_MaybeGC, JS_BeginRequest, or any JS API entry point that acquires locks, without double-tripping or deadlocking on the GC lock.

JS_MapGCRoots returns the count of roots that were successfully mapped.

See Also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:50 次

字数:2387

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文