Skip to content

Commit

Permalink
Merge pull request #787 from Lonnen/stage-skiplist-3
Browse files Browse the repository at this point in the history
Bug 778162 - clearer way to search for a symbol in a stack, suggested by lars
  • Loading branch information
lonnen committed Aug 10, 2012
2 parents a429df3 + ffc4205 commit 1cec2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/config/processorconfig.py.dist
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ signatureSentinels = cm.Option()
signatureSentinels.doc = 'a list of frame signatures that should always be considered top of the stack if present in the stack'
signatureSentinels.default = ['_purecall',
('mozilla::ipc::RPCChannel::Call(IPC::Message*, IPC::Message*)',
lambda x: 'CrashReporter::CreatePairedMinidumps(void*, unsigned long, nsAString_internal*, nsILocalFile**, nsILocalFile**)' in x),
lambda stack: any('CreatePairedMinidumps' in signature for signature in stack)),
'Java_org_mozilla_gecko_GeckoAppShell_reportJavaCrash',
'google_breakpad::ExceptionHandler::HandleInvalidParameter(wchar_t const*, wchar_t const*, wchar_t const*, unsigned int, unsigned int)']

Expand Down

0 comments on commit 1cec2a8

Please sign in to comment.