Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
port back GDC's __jmp_buf for ARM/PPC/PPC64
Browse files Browse the repository at this point in the history
- I rechecked glibc's definitions
  • Loading branch information
MartinNowak committed Dec 25, 2012
1 parent 10f9edd commit 109ac76
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/core/sys/posix/setjmp.d
Expand Up @@ -62,6 +62,18 @@ version( linux )
{
alias int[3] __jmp_buf;
}
else version (ARM)
{
alias int[64] __jmp_buf;
}
else version (PPC)
{
alias int[64 + (12*4)] __jmp_buf;
}
else version (PPC64)
{
alias long[64] __jmp_buf;
}

struct __jmp_buf_tag
{
Expand Down

0 comments on commit 109ac76

Please sign in to comment.