diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-20 12:00:26 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-20 12:00:26 +0100 |
commit | 533f1d9a05e66c9d8190b3cd4a5bd5b8e7083278 (patch) | |
tree | 45779e58d11a2e540cb7db858c383d4471ab475b /js/public | |
parent | 155a289c6db7e0d6bdafb029b426b1cb541bb700 (diff) | |
download | uxp-533f1d9a05e66c9d8190b3cd4a5bd5b8e7083278.tar.gz |
Issue mcp-graveyard/UXP#316 - Make the memory GC performance object conditional (WIP)
This was only added for GCubench and likely interfering with building
without devtools-server.
Diffstat (limited to 'js/public')
-rw-r--r-- | js/public/HeapAPI.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/public/HeapAPI.h b/js/public/HeapAPI.h index e37d13e932..fef6c0c780 100644 --- a/js/public/HeapAPI.h +++ b/js/public/HeapAPI.h @@ -392,6 +392,7 @@ IsIncrementalBarrierNeededOnTenuredGCThing(JS::shadow::Runtime* rt, const JS::GC return JS::shadow::Zone::asShadowZone(zone)->needsIncrementalBarrier(); } +#ifdef MOZ_DEVTOOLS_SERVER /** * Create an object providing access to the garbage collector's internal notion * of the current state of memory (both GC heap memory and GCthing-controlled @@ -399,6 +400,7 @@ IsIncrementalBarrierNeededOnTenuredGCThing(JS::shadow::Runtime* rt, const JS::GC */ extern JS_PUBLIC_API(JSObject*) NewMemoryInfoObject(JSContext* cx); +#endif } /* namespace gc */ } /* namespace js */ |