summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/sh/sh3
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/sh/sh3')
-rw-r--r--sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h79
-rw-r--r--sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.sym38
2 files changed, 38 insertions, 79 deletions
diff --git a/sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h b/sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h
deleted file mode 100644
index d8483dbe64..0000000000
--- a/sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/* Offsets and other constants needed in the *context() function
- implementation.
- Copyright (C) 2005 Free Software Foundation, Inc.
- This file is part of the GNU C Library.
-
- The GNU C Library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- The GNU C Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
-
-#define SIG_BLOCK 0
-#define SIG_SETMASK 2
-
-/* Offsets of the fields in the ucontext_t structure. */
-#define oLINK 4
-#define oSS_SP 8
-#define oSS_SIZE 16
-#define oR0 24
-#define oR1 28
-#define oR2 32
-#define oR3 36
-#define oR4 40
-#define oR5 44
-#define oR6 48
-#define oR7 52
-#define oR8 56
-#define oR9 60
-#define oR10 64
-#define oR11 68
-#define oR12 72
-#define oR13 76
-#define oR14 80
-#define oR15 84
-#define oPC 88
-#define oPR 92
-#define oSR 96
-#define oGBR 100
-#define oMACH 104
-#define oMACL 108
-#define oSIGMASK 112
-
-/* Tests run in stdlib/tst-ucontext-off. */
-#define TESTS \
- TEST (uc_link, oLINK); \
- TEST (uc_stack.ss_sp, oSS_SP); \
- TEST (uc_stack.ss_size, oSS_SIZE); \
- TEST (uc_mcontext.gregs[R0], oR0); \
- TEST (uc_mcontext.gregs[R1], oR1); \
- TEST (uc_mcontext.gregs[R2], oR2); \
- TEST (uc_mcontext.gregs[R3], oR3); \
- TEST (uc_mcontext.gregs[R4], oR4); \
- TEST (uc_mcontext.gregs[R5], oR5); \
- TEST (uc_mcontext.gregs[R6], oR6); \
- TEST (uc_mcontext.gregs[R7], oR7); \
- TEST (uc_mcontext.gregs[R8], oR8); \
- TEST (uc_mcontext.gregs[R9], oR9); \
- TEST (uc_mcontext.gregs[R10], oR10); \
- TEST (uc_mcontext.gregs[R11], oR11); \
- TEST (uc_mcontext.gregs[R12], oR12); \
- TEST (uc_mcontext.gregs[R13], oR13); \
- TEST (uc_mcontext.gregs[R14], oR14); \
- TEST (uc_mcontext.gregs[R15], oR15); \
- TEST (uc_mcontext.pc, oPC); \
- TEST (uc_mcontext.pr, oPR); \
- TEST (uc_mcontext.sr, oSR); \
- TEST (uc_mcontext.gbr, oGBR); \
- TEST (uc_mcontext.mach, oMACH); \
- TEST (uc_mcontext.macl, oMACL); \
- TEST (uc_sigmask, oSIGMASK);
diff --git a/sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.sym b/sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.sym
new file mode 100644
index 0000000000..17397c5511
--- /dev/null
+++ b/sysdeps/unix/sysv/linux/sh/sh3/ucontext_i.sym
@@ -0,0 +1,38 @@
+#include <stddef.h>
+#include <signal.h>
+#include <sys/ucontext.h>
+
+--
+
+SIG_BLOCK
+SIG_SETMASK
+
+#define ucontext(member) offsetof (ucontext_t, member)
+#define mcontext(member) ucontext (uc_mcontext.member)
+
+oLINK ucontext (uc_link)
+oSS_SP ucontext (uc_stack.ss_sp)
+oSS_SIZE ucontext (uc_stack.ss_size)
+oR0 mcontext (gregs[R0])
+oR1 mcontext (gregs[R1])
+oR2 mcontext (gregs[R2])
+oR3 mcontext (gregs[R3])
+oR4 mcontext (gregs[R4])
+oR5 mcontext (gregs[R5])
+oR6 mcontext (gregs[R6])
+oR7 mcontext (gregs[R7])
+oR8 mcontext (gregs[R8])
+oR9 mcontext (gregs[R9])
+oR10 mcontext (gregs[R10])
+oR11 mcontext (gregs[R11])
+oR12 mcontext (gregs[R12])
+oR13 mcontext (gregs[R13])
+oR14 mcontext (gregs[R14])
+oR15 mcontext (gregs[R15])
+oPC mcontext (pc)
+oPR mcontext (pr)
+oSR mcontext (sr)
+oGBR mcontext (gbr)
+oMACH mcontext (mach)
+oMACL mcontext (macl)
+oSIGMASK ucontext (uc_sigmask)