Throwable.java (trace_enabled): New static field.
* java/lang/Throwable.java (trace_enabled): New static field. * java/lang/natThrowable.cc (fillInStackTrace): Do nothing if trace_enabled not set. * prims.cc (main_init): Turn off trace_enabled while creating default exception objects. From-SVN: r38442
This commit is contained in:
parent
98c17df26e
commit
86a42a5f24
4 changed files with 18 additions and 0 deletions
|
@ -164,6 +164,8 @@ public class Throwable implements Serializable
|
|||
// Name of this field comes from serialization spec.
|
||||
private String detailMessage;
|
||||
|
||||
// Setting this flag to false prevents fillInStackTrace() from running.
|
||||
static boolean trace_enabled = true;
|
||||
private transient byte stackTrace[];
|
||||
private static final long serialVersionUID = -3042686055658047285L;
|
||||
}
|
||||
|
|
|
@ -50,6 +50,8 @@ extern "C" int __ia64_backtrace (void **array, int size);
|
|||
java::lang::Throwable *
|
||||
java::lang::Throwable::fillInStackTrace (void)
|
||||
{
|
||||
if (! trace_enabled)
|
||||
return this;
|
||||
#if defined (HAVE_BACKTRACE) || defined (__ia64__)
|
||||
void *p[128];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue