native,platform: clear the FPU context in uc_example

* This will fix the SIGSEGV sent by 4.19 kernel. It seems the cause is
  that a page fault is generated when restoring the FPU context with an
  fxrstor64 instruction. To work around, we just clear the FPU context
  in uc_example, so the kernel will not try to restore the FPU context.
This commit is contained in:
Zihao Yu 2020-12-06 23:19:05 +08:00
parent 55ef7b162d
commit 66dcd98e39

View file

@ -137,6 +137,7 @@ static void init_platform() {
// save the context template
save_example_context();
uc_example.uc_mcontext.fpregs = NULL; // clear the FPU context
__am_get_intr_sigmask(&uc_example.uc_sigmask);
// disable interrupts by default