fixing initialization issue with JSGCFreeListSet

--HG--
branch : scalable_gc_free_lists_378918
This commit is contained in:
Igor Bukanov 2008-06-24 14:17:03 +02:00
Родитель ee76685949
Коммит deedd77e35
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1684,7 +1684,9 @@ unsigned gchpos = 0;
#ifdef JS_THREADSAFE
const JSGCFreeListSet js_GCEmptyFreeListSet;
const JSGCFreeListSet js_GCEmptyFreeListSet = {
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }, NULL
};
static void
TrimGCFreeListsPool(JSRuntime *rt, uintN keepCount)