Remove debug printfs (no bug).

This commit is contained in:
Andreas Gal 2009-08-19 15:29:56 -07:00
parent 9a78cb5d5f
commit c09eb5d1a9
2 changed files with 0 additions and 9 deletions

View File

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

View File

@ -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) {