Auto merge of #10824 - asajeffrey:communicate-backtrace-on-panic, r=Manishearth

Communicate a backtrace to the constellation when panicking.

Send a representation of the backtrace from a pipeline thread to the constellation in the case of panic. This is the next step in communicating the backtrace to the browser chrome (#10334).

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10824)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-04-26 13:17:33 -07:00
commit f773dc182b
10 changed files with 197 additions and 70 deletions

View file

@ -18,6 +18,7 @@
#![deny(unsafe_code)]
extern crate app_units;
extern crate backtrace;
#[allow(unused_extern_crates)]
#[macro_use]
extern crate bitflags;