folly: SafeAssert: variadic macros to enable more detailed error reporting from signal handlers
Summary: `folly::Symbolizer` uses `FOLLY_SAFE_CHECK` -- which is signal-safe, but it only says "this thing broke". I plan to changes these to add more details about what exactly broke: from: FOLLY_SAFE_CHECK(die.abbr.tag == DW_TAG_compile_unit, "expecting compile unit entry"); to FOLLY_SAFE_CHECK(die.abbr.tag == DW_TAG_compile_unit, "expecting compile unit entry, found: ", die.abbr.tag); Reviewed By: yfeldblum Differential Revision: D25992552 fbshipit-source-id: ae678b45606afc519704767844a973d499c60c73
Showing
Please register or sign in to comment