From 307d9745eda813de9001a73853c1f6f39f96f960 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Thu, 8 Jan 2009 20:22:50 +0000 Subject: [PATCH] * adapted some field names so they correspond to the automatically translated headers git-svn-id: trunk@12530 - --- rtl/darwin/arm/sighnd.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rtl/darwin/arm/sighnd.inc b/rtl/darwin/arm/sighnd.inc index 0c78f6470a..3f0a684a01 100644 --- a/rtl/darwin/arm/sighnd.inc +++ b/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;