mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
64dd7a1630
S390 kernel sigaction is the same as the Linux generic one. Checked with a s390-linux-gnu and s390x-linux-gnu build. * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Use Linux generic kernel_sigction definition.
10 lines
336 B
C
10 lines
336 B
C
/* S390 uses the generic Linux UAPI but defines SA_RESTORER. */
|
|
#define SA_RESTORER 0x04000000
|
|
|
|
#define SET_SA_RESTORER(kact, act) \
|
|
(kact)->sa_restorer = (act)->sa_restorer
|
|
#define RESET_SA_RESTORER(act, kact) \
|
|
(act)->sa_restorer = (kact)->sa_restorer
|
|
|
|
#include <sysdeps/unix/sysv/linux/kernel_sigaction.h>
|