Bug 1348155 - Annotate allocation API, r=jonco

--HG--
extra : rebase_source : 8968be9fb56115c24aa460ed42ace262cce572a7
This commit is contained in:
Steve Fink 2017-03-15 16:43:21 -07:00
Родитель 9762f33552
Коммит d7a064779d
1 изменённых файлов: 6 добавлений и 4 удалений

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

@ -10,10 +10,6 @@ var GCSuppressionTypes = [];
var ignoreIndirectCalls = {
"mallocSizeOf" : true,
"aMallocSizeOf" : true,
"_malloc_message" : true,
"je_malloc_message" : true,
"chunk_dalloc" : true,
"chunk_alloc" : true,
"__conv" : true,
"__convf" : true,
"prerrortable.c:callback_newtable" : true,
@ -175,6 +171,12 @@ var ignoreFunctions = {
// Bug 1056410 - devirtualization prevents the standard nsISupports::Release heuristic from working
"uint32 nsXPConnect::Release()" : true,
// Allocation API
"malloc": true,
"calloc": true,
"realloc": true,
"free": true,
// FIXME!
"NS_LogInit": true,
"NS_LogTerm": true,