mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
c739e191d0
The uc_mcontext.__reserved member of ucontext_t is a user visible API,
that should not be changed, because this is the only way to access cpu
states of various extensions of linux asm/sigcontext.h, it does not
violate namespace rules either, so revert this part of the commit
commit 4fa9b3bfe6
Commit: Joseph Myers <joseph@codesourcery.com>
Fix mcontext_t sigcontext namespace (bug 21457).
(In principle the user can type cast &uc_mcontext to struct sigcontext*
to use the linux sigcontext fields, but that's not the existing practice
since mcontext_t used to be a typedef of struct sigcontext.)
[BZ #22742]
* sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__glibc_reserved1):
Rename to __reserved and add comment.
* sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (__glibc_reserved1):
Rename to __reserved.
56 lines
1.6 KiB
Plaintext
56 lines
1.6 KiB
Plaintext
#include <inttypes.h>
|
|
#include <signal.h>
|
|
#include <stddef.h>
|
|
#include <sys/ucontext.h>
|
|
#include <asm/sigcontext.h>
|
|
|
|
#include "kernel_rt_sigframe.h"
|
|
|
|
SIG_BLOCK
|
|
SIG_SETMASK
|
|
|
|
_NSIG8 (_NSIG / 8)
|
|
|
|
-- Offsets of the fields in the kernel rt_sigframe_t structure.
|
|
#define rt_sigframe(member) offsetof (struct kernel_rt_sigframe, member)
|
|
|
|
RT_SIGFRAME_UCONTEXT rt_sigframe (uc)
|
|
|
|
RT_SIGFRAME_SIZE sizeof (struct kernel_rt_sigframe)
|
|
FPSIMD_CONTEXT_SIZE sizeof (struct fpsimd_context)
|
|
|
|
#define ucontext(member) offsetof (ucontext_t, member)
|
|
#define stack(member) ucontext (uc_stack.member)
|
|
#define mcontext(member) ucontext (uc_mcontext.member)
|
|
|
|
UCONTEXT_FLAGS ucontext (uc_flags)
|
|
UCONTEXT_LINK ucontext (uc_link)
|
|
UCONTEXT_STACK ucontext (uc_stack)
|
|
UCONTEXT_MCONTEXT ucontext (uc_mcontext)
|
|
UCONTEXT_SIGMASK ucontext (uc_sigmask)
|
|
UCONTEXT_SIZE sizeof (ucontext_t)
|
|
|
|
STACK_SP stack (ss_sp)
|
|
STACK_SIZE stack (ss_size)
|
|
STACK_FLAGS stack (ss_flags)
|
|
|
|
oX0 mcontext (regs)
|
|
oSP mcontext (sp)
|
|
oPC mcontext (pc)
|
|
oPSTATE mcontext (pstate)
|
|
oEXTENSION mcontext (__reserved)
|
|
|
|
#define fpsimd_context(member) offsetof (struct fpsimd_context, member)
|
|
|
|
oHEAD fpsimd_context (head)
|
|
oV0 fpsimd_context (vregs)
|
|
oFPSR fpsimd_context (fpsr)
|
|
oFPCR fpsimd_context (fpcr)
|
|
|
|
#define aarch64_ctx(member) offsetof (struct _aarch64_ctx, member)
|
|
|
|
oMAGIC aarch64_ctx (magic)
|
|
oSIZE aarch64_ctx (size)
|
|
|
|
FPSIMD_MAGIC
|