1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

S/390: Revert the jmp_buf/ucontext_t ABI change.

This commit is contained in:
Stefan Liebler
2014-07-31 20:04:54 +02:00
committed by Andreas Krebbel
parent 6c9578a24b
commit 2f438e20ab
36 changed files with 251 additions and 786 deletions

View File

@ -64,15 +64,6 @@ typedef struct
fpreg_t fprs[16];
} fpregset_t;
/* Bit is set if the uc_high_gprs field contains the upper halfs of
the 64 bit general purpose registers. Since the uc_high_gprs field
is only available in the 32 bit version of ucontext_t it will never
be set for 64 bit. */
#define UCONTEXT_UC_FLAGS_HIGH_GPRS (1UL << 0)
/* A new uc_flags constant will be defined when actually making use of
the reserved space: UCONTEXT_UCFLAGS_RESERVED (1UL << 1). */
/* Context to describe whole processor state. */
typedef struct
{
@ -90,10 +81,6 @@ struct ucontext
stack_t uc_stack;
mcontext_t uc_mcontext;
__sigset_t uc_sigmask;
#ifndef __s390x__
unsigned long uc_high_gprs[16];
#endif
char __reserved[512];
};