--- a/hotspot/src/share/vm/gc/shared/taskqueue.cpp Mon Sep 28 15:05:02 2015 +0200
+++ b/hotspot/src/share/vm/gc/shared/taskqueue.cpp Tue Sep 29 11:02:08 2015 +0200
@@ -92,20 +92,20 @@
void TaskQueueStats::verify() const
{
assert(get(push) == get(pop) + get(steal),
- err_msg("push=" SIZE_FORMAT " pop=" SIZE_FORMAT " steal=" SIZE_FORMAT,
- get(push), get(pop), get(steal)));
+ "push=" SIZE_FORMAT " pop=" SIZE_FORMAT " steal=" SIZE_FORMAT,
+ get(push), get(pop), get(steal));
assert(get(pop_slow) <= get(pop),
- err_msg("pop_slow=" SIZE_FORMAT " pop=" SIZE_FORMAT,
- get(pop_slow), get(pop)));
+ "pop_slow=" SIZE_FORMAT " pop=" SIZE_FORMAT,
+ get(pop_slow), get(pop));
assert(get(steal) <= get(steal_attempt),
- err_msg("steal=" SIZE_FORMAT " steal_attempt=" SIZE_FORMAT,
- get(steal), get(steal_attempt)));
+ "steal=" SIZE_FORMAT " steal_attempt=" SIZE_FORMAT,
+ get(steal), get(steal_attempt));
assert(get(overflow) == 0 || get(push) != 0,
- err_msg("overflow=" SIZE_FORMAT " push=" SIZE_FORMAT,
- get(overflow), get(push)));
+ "overflow=" SIZE_FORMAT " push=" SIZE_FORMAT,
+ get(overflow), get(push));
assert(get(overflow_max_len) == 0 || get(overflow) != 0,
- err_msg("overflow_max_len=" SIZE_FORMAT " overflow=" SIZE_FORMAT,
- get(overflow_max_len), get(overflow)));
+ "overflow_max_len=" SIZE_FORMAT " overflow=" SIZE_FORMAT,
+ get(overflow_max_len), get(overflow));
}
#endif // ASSERT
#endif // TASKQUEUE_STATS