瀏覽代碼

* adapted some field names so they correspond to the automatically
translated headers

git-svn-id: trunk@12530 -

Jonas Maebe 16 年之前
父節點
當前提交
307d9745ed
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. 5 5
      rtl/darwin/arm/sighnd.inc

+ 5 - 5
rtl/darwin/arm/sighnd.inc

@@ -33,7 +33,7 @@ begin
           Else
             Res:=207; {coprocessor error}
         end;
-        SigContext^.uc_mcontext^.fs.__fpscr := SigContext^.uc_mcontext^.fs.__fpscr and not($1fff);
+        SigContext^.uc_mcontext^.__fs.__fpscr := SigContext^.uc_mcontext^.__fs.__fpscr and not($1fff);
       end;
     SIGBUS:
         res:=214;
@@ -48,10 +48,10 @@ begin
   { return to trampoline }
   if res <> 0 then
     begin
-      SigContext^.uc_mcontext^.ss.__r[0] := res;
-      SigContext^.uc_mcontext^.ss.__r[1] := SigContext^.uc_mcontext^.ss.__pc;
-      SigContext^.uc_mcontext^.ss.__r[2] := SigContext^.uc_mcontext^.ss.__sp;
-      pointer(SigContext^.uc_mcontext^.ss.__pc) := @HandleErrorAddrFrame;
+      SigContext^.uc_mcontext^.__ss.__r[0] := res;
+      SigContext^.uc_mcontext^.__ss.__r[1] := SigContext^.uc_mcontext^.__ss.__pc;
+      SigContext^.uc_mcontext^.__ss.__r[2] := SigContext^.uc_mcontext^.__ss.__sp;
+      pointer(SigContext^.uc_mcontext^.__ss.__pc) := @HandleErrorAddrFrame;
     end;
 end;