js/src/shell/js-gdb.gdb

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 define hookpost-run
     2     if ($sigaction)
     3         call free($sigaction)
     4         set $sigaction = 0
     5     end
     6 end
     8 catch signal SIGSEGV
     9 commands
    10     if !$sigaction
    11         set $sigaction = malloc(sizeof(sigaction))
    12     end
    13     set $ignored = __sigaction(11, 0, $sigaction)
    14     set $handler = ((struct sigaction *)$sigaction)->__sigaction_handler.sa_handler
    15     if $handler == AsmJSFaultHandler
    16         continue
    17     end
    18 end

mercurial