]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/arm/include/asm/signal.h
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / arch / arm / include / asm / signal.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _ASMARM_SIGNAL_H
3#define _ASMARM_SIGNAL_H
4
cb8db5d4 5#include <uapi/asm/signal.h>
1da177e4 6
1da177e4
LT
7/* Most things should be clean enough to redefine this at will, if care
8 is taken to make libc match. */
9
10#define _NSIG 64
11#define _NSIG_BPW 32
12#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
13
14typedef unsigned long old_sigset_t; /* at least 32 bits */
15
16typedef struct {
17 unsigned long sig[_NSIG_WORDS];
18} sigset_t;
19
574c4866 20#define __ARCH_HAS_SA_RESTORER
1da177e4 21
1da177e4 22#include <asm/sigcontext.h>
1da177e4 23#endif