Browse Source

修改了一段 sigrestorer 汇编使得 dragonos 能正常执行 sigreturn (#20)

Chiichen 1 year ago
parent
commit
0a1b6ce239
1 changed files with 7 additions and 2 deletions
  1. 7 2
      src/header/signal/dragonos.rs

+ 7 - 2
src/header/signal/dragonos.rs

@@ -7,8 +7,13 @@ global_asm!(
     "
     .global __restore_rt
     __restore_rt:
-        mov rax, 25
-        int 0x80
+        push   rbp      
+        mov    rbp,rsp
+        mov    eax, 25
+        int    0x80
+        nop
+        pop    rbp
+        ret  
 "
 );