summaryrefslogtreecommitdiff
path: root/rtl/darwin/arm/sighnd.inc
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-01-08 20:22:50 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-01-08 20:22:50 +0000
commitfb694c6b7637fabd1fa1b72156cb4b3b561dc9ca (patch)
tree5146b50a2c5d4d39292cde6a1093fad1c3df2237 /rtl/darwin/arm/sighnd.inc
parent87373ee6cdf56c3d91f35141c87e07785d347188 (diff)
downloadfpc-fb694c6b7637fabd1fa1b72156cb4b3b561dc9ca.tar.gz
* adapted some field names so they correspond to the automatically
translated headers git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@12530 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'rtl/darwin/arm/sighnd.inc')
-rw-r--r--rtl/darwin/arm/sighnd.inc10
1 files 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;