Commit 9c4f46a6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

PowerPC: reset SIGILL to default handler too

parent 5b4fe3ad
...@@ -270,6 +270,7 @@ out: ...@@ -270,6 +270,7 @@ out:
pid_t pid = fork(); pid_t pid = fork();
if( pid == 0 ) if( pid == 0 )
{ {
signal(SIGILL, SIG_DFL);
asm volatile ("mtspr 256, %0\n\t" asm volatile ("mtspr 256, %0\n\t"
"vand %%v0, %%v0, %%v0" "vand %%v0, %%v0, %%v0"
: :
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment