comparison src/share/vm/runtime/thread.cpp @ 6985:80e866b1d053

Merge
author coleenp
date Fri, 16 Nov 2012 09:19:12 -0500
parents d9a84e246cce 070d523b96a7
children 2cb439954abf 53715fb1597d 2cd5e15048e6
comparison
equal deleted inserted replaced
6974:6b6ddf8c4329 6985:80e866b1d053
1783 if (HAS_PENDING_EXCEPTION) { 1783 if (HAS_PENDING_EXCEPTION) {
1784 ResourceMark rm(this); 1784 ResourceMark rm(this);
1785 jio_fprintf(defaultStream::error_stream(), 1785 jio_fprintf(defaultStream::error_stream(),
1786 "\nException: %s thrown from the UncaughtExceptionHandler" 1786 "\nException: %s thrown from the UncaughtExceptionHandler"
1787 " in thread \"%s\"\n", 1787 " in thread \"%s\"\n",
1788 Klass::cast(pending_exception()->klass())->external_name(), 1788 pending_exception()->klass()->external_name(),
1789 get_thread_name()); 1789 get_thread_name());
1790 CLEAR_PENDING_EXCEPTION; 1790 CLEAR_PENDING_EXCEPTION;
1791 } 1791 }
1792 } 1792 }
1793 } 1793 }