Changes between Initial Version and Version 1 of Ticket #10295


Ignore:
Timestamp:
Dec 9, 2013, 4:14:05 PM (10 years ago)
Author:
pulkomandy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10295 – Description

    initial v1  
    11Our implementation of assert() calls debugger(). POSIX says it should call abort().
     2http://pubs.opengroup.org/onlinepubs/9699919799/functions/assert.html
    23
    34This 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.