Module Name: src
Committed By: thorpej
Date: Sat Oct 30 19:54:58 UTC 2021
Modified Files:
src/sys/arch/arm/include: signal.h
Log Message:
Fix the previous to only apply to the non-AArch64 case.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/arm/include/signal.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/include/signal.h
diff -u src/sys/arch/arm/include/signal.h:1.19 src/sys/arch/arm/include/signal.h:1.20
--- src/sys/arch/arm/include/signal.h:1.19 Sat Oct 30 15:51:52 2021
+++ src/sys/arch/arm/include/signal.h Sat Oct 30 19:54:58 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: signal.h,v 1.19 2021/10/30 15:51:52 thorpej Exp $ */
+/* $NetBSD: signal.h,v 1.20 2021/10/30 19:54:58 thorpej Exp $ */
/*
* Copyright (c) 1994-1996 Mark Brinicombe.
@@ -49,14 +49,14 @@
#include <sys/featuretest.h>
#include <sys/sigtypes.h>
-#define __HAVE_STRUCT_SIGCONTEXT
-
#ifndef _LOCORE
typedef int sig_atomic_t;
#endif
#if defined(__arm__)
+#define __HAVE_STRUCT_SIGCONTEXT
+
#if defined(_NETBSD_SOURCE)
#ifndef _LOCORE