Remove debug printfs (no bug).

This commit is contained in:
Andreas Gal 2009-08-19 15:29:56 -07:00
Родитель b4232322c2
Коммит 762cbce0ea
2 изменённых файлов: 0 добавлений и 9 удалений

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

@ -836,9 +836,6 @@ bad:
JS_PUBLIC_API(void)
JS_CommenceRuntimeShutDown(JSRuntime *rt)
{
#ifdef DEBUG
fprintf(stderr, "JS_CommenceRuntimeShutDown\n");
#endif
rt->gcFlushCodeCaches = true;
}

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

@ -2108,9 +2108,6 @@ oom:
void
JSTraceMonitor::flush()
{
#ifdef DEBUG
fprintf(stderr, "JSTraceMonitor::flush()\n");
#endif
if (fragmento) {
fragmento->clearFrags();
for (size_t i = 0; i < FRAGMENT_TABLE_SIZE; ++i) {
@ -2147,9 +2144,6 @@ void
JSTraceMonitor::mark(JSTracer* trc)
{
if (!trc->context->runtime->gcFlushCodeCaches) {
#ifdef DEBUG
fprintf(stderr, "JSTraceMonitor::mark()\n");
#endif
for (size_t i = 0; i < FRAGMENT_TABLE_SIZE; ++i) {
VMFragment* f = vmfragments[i];
while (f) {