0
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
1 |
<a data-toggle="collapse" href="#backtrace-crashing-thread"><h3>Crashing thread top frames</h3></a>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
2 |
<div id="backtrace-crashing-thread" class="collapse in">
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
3 |
%= include 'report/backtrace/frames', frames => $crashing_thread->{frames}
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
4 |
</div>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
5 |
<a data-toggle="collapse" href="#backtrace-all-threads"><h3>All threads</h3></a>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
6 |
<div id="backtrace-all-threads" class="collapse in">
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
7 |
% foreach my $thread(@$threads) {
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
8 |
%= include 'report/backtrace/frames', frames => $thread->{frames}
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
9 |
% }
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
10 |
</div>
|
Vincent Tondellier <tonton+hg@team1664.org>
parents:
diff
changeset
|
11 |
|