Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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