diff src/share/vm/runtime/vmThread.cpp @ 9152:f36e073d56a4

7104565: trim jprt build targets Summary: remove JPRT debug builds, remove -DDEBUG -DFASTDEBUG and use ASSERT instead in sources Reviewed-by: dholmes, kvn, coleenp
author drchase
date Fri, 12 Apr 2013 15:53:30 -0700
parents 5ce621176715
children b06ac540229e
line wrap: on
line diff
--- a/src/share/vm/runtime/vmThread.cpp	Fri Apr 12 12:22:59 2013 -0700
+++ b/src/share/vm/runtime/vmThread.cpp	Fri Apr 12 15:53:30 2013 -0700
@@ -123,7 +123,7 @@
   _queue[prio]->set_next(_queue[prio]);
   _queue[prio]->set_prev(_queue[prio]);
   assert(queue_empty(prio), "drain corrupted queue");
-#ifdef DEBUG
+#ifdef ASSERT
   int len = 0;
   VM_Operation* cur;
   for(cur = r; cur != NULL; cur=cur->next()) len++;