mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 18:27:13 +07:00
9ef595d83a
Use the more normal kernel definition/declaration style. Done via: $ git ls-files arch/sparc | \ xargs ./scripts/checkpatch.pl -f --fix-inplace --types=unspecified_int Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
24 lines
526 B
C
24 lines
526 B
C
#ifndef _COMPAT_SIGNAL_H
|
|
#define _COMPAT_SIGNAL_H
|
|
|
|
#include <linux/compat.h>
|
|
#include <asm/signal.h>
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
struct __new_sigaction32 {
|
|
unsigned int sa_handler;
|
|
unsigned int sa_flags;
|
|
unsigned int sa_restorer; /* not used by Linux/SPARC yet */
|
|
compat_sigset_t sa_mask;
|
|
};
|
|
|
|
struct __old_sigaction32 {
|
|
unsigned int sa_handler;
|
|
compat_old_sigset_t sa_mask;
|
|
unsigned int sa_flags;
|
|
unsigned int sa_restorer; /* not used by Linux/SPARC yet */
|
|
};
|
|
#endif
|
|
|
|
#endif /* !(_COMPAT_SIGNAL_H) */
|