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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论