diff options
author | mirabilos <m@mirbsd.org> | 2019-10-09 23:57:45 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2019-10-15 18:18:11 +0200 |
commit | 1a0a6bd7d3d1c22a84ec423b8562376979169b31 (patch) | |
tree | 370b0dfe88dd0e25fdcd5f3f7bf7f49c0d1e03a3 /libc/sysdeps/linux/sparc64 | |
parent | d05b08ccf92cf121549dc96aebae6deeb0a9c675 (diff) |
sparc64: Use the jmpbuf-offsets.h header instead of duplicating it
Diffstat (limited to 'libc/sysdeps/linux/sparc64')
-rw-r--r-- | libc/sysdeps/linux/sparc64/__longjmp.S | 7 | ||||
-rw-r--r-- | libc/sysdeps/linux/sparc64/setjmp.S | 7 |
2 files changed, 2 insertions, 12 deletions
diff --git a/libc/sysdeps/linux/sparc64/__longjmp.S b/libc/sysdeps/linux/sparc64/__longjmp.S index 79cefcc9d..49cef2351 100644 --- a/libc/sysdeps/linux/sparc64/__longjmp.S +++ b/libc/sysdeps/linux/sparc64/__longjmp.S @@ -16,12 +16,7 @@ <http://www.gnu.org/licenses/>. */ #include <sysdep.h> - -/* Offsets into the jmp_buf structure. */ - -#define O_mask_was_saved 512 -#define O_gregs 32 -#define O_g1 (O_gregs + 4*8) +#include <jmpbuf-offsets.h> ENTRY(__longjmp) diff --git a/libc/sysdeps/linux/sparc64/setjmp.S b/libc/sysdeps/linux/sparc64/setjmp.S index b30c7d744..a329bb7c1 100644 --- a/libc/sysdeps/linux/sparc64/setjmp.S +++ b/libc/sysdeps/linux/sparc64/setjmp.S @@ -19,12 +19,7 @@ Linux/Sparc64. */ #include <sysdep.h> - -/* Offsets into the jmp_buf structure. */ - -#define O_mask_was_saved 512 -#define O_gregs 32 -#define O_g1 (O_gregs + 4*8) +#include <jmpbuf-offsets.h> /* int _setjmp(jmp_buf) */ |