Changeset View
Changeset View
Standalone View
Standalone View
sys/arm64/include/signal.h
| Show All 26 Lines | |||||
| * SUCH DAMAGE. | * SUCH DAMAGE. | ||||
| * | * | ||||
| * @(#)signal.h 8.1 (Berkeley) 6/11/93 | * @(#)signal.h 8.1 (Berkeley) 6/11/93 | ||||
| * from: FreeBSD: src/sys/i386/include/signal.h,v 1.13 2000/11/09 | * from: FreeBSD: src/sys/i386/include/signal.h,v 1.13 2000/11/09 | ||||
| * from: FreeBSD: src/sys/sparc64/include/signal.h,v 1.6 2001/09/30 18:52:17 | * from: FreeBSD: src/sys/sparc64/include/signal.h,v 1.6 2001/09/30 18:52:17 | ||||
| * $FreeBSD$ | * $FreeBSD$ | ||||
| */ | */ | ||||
| #ifdef __arm__ | |||||
| #include <arm/signal.h> | |||||
| #else /* !__arm__ */ | |||||
| #ifndef _MACHINE_SIGNAL_H_ | #ifndef _MACHINE_SIGNAL_H_ | ||||
| #define _MACHINE_SIGNAL_H_ | #define _MACHINE_SIGNAL_H_ | ||||
| #include <sys/cdefs.h> | #include <sys/cdefs.h> | ||||
| typedef long sig_atomic_t; | typedef long sig_atomic_t; | ||||
| #if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
| struct sigcontext { | struct sigcontext { | ||||
| int _dummy; | int _dummy; | ||||
| }; | }; | ||||
| #endif | #endif | ||||
| #endif /* !_MACHINE_SIGNAL_H_ */ | #endif /* !_MACHINE_SIGNAL_H_ */ | ||||
| #endif /* !__arm__ */ | |||||