Backed out changeset 325bdb8f8f80 (bug 1110928)

This commit is contained in:
Sebastian Hengst 2016-08-21 12:27:51 +02:00
Родитель 7422ce2634
Коммит 55ccc927a5
2 изменённых файлов: 0 добавлений и 12 удалений

Просмотреть файл

@ -157,12 +157,6 @@ ExplainReason(JS::gcreason::Reason reason);
extern JS_PUBLIC_API(void)
PrepareZoneForGC(Zone* zone);
/**
* Schedule the system zone to be collected as part of the next GC.
*/
extern JS_PUBLIC_API(void)
PrepareSystemZoneForGC(JSContext* cx);
/**
* Schedule all zones to be collected in the next GC.
*/

Просмотреть файл

@ -7120,12 +7120,6 @@ JS::PrepareZoneForGC(Zone* zone)
zone->scheduleGC();
}
JS_PUBLIC_API(void)
JS::PrepareSystemZoneForGC(JSContext* cx)
{
PrepareZoneForGC(cx->runtime()->gc.systemZone);
}
JS_PUBLIC_API(void)
JS::PrepareForFullGC(JSContext* cx)
{