Changes between Initial Version and Version 1 of Ticket #10295
- Timestamp:
- Dec 9, 2013, 4:14:05 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10295 – Description
initial v1 1 1 Our implementation of assert() calls debugger(). POSIX says it should call abort(). 2 http://pubs.opengroup.org/onlinepubs/9699919799/functions/assert.html 2 3 3 4 This would be useful to catch assertions from inside the application (by setting a SIGABRT handler). I wanted to use that in the WebKit testsuite to avoid the debug_server crash dialog, and save a crash report instead. However, the team is killed without having a chance to intercept anything (with or without disable_debugger()). The kill is done with SIGKILL which can't be intercepted with a signal handler.