Module Name: src Committed By: christos Date: Wed Oct 27 18:20:08 UTC 2021
Modified Files: src/sys/arch/powerpc/include: signal.h Log Message: There is no sigcontext in ppc64 To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/arch/powerpc/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/powerpc/include/signal.h diff -u src/sys/arch/powerpc/include/signal.h:1.24 src/sys/arch/powerpc/include/signal.h:1.25 --- src/sys/arch/powerpc/include/signal.h:1.24 Tue Oct 26 21:11:03 2021 +++ src/sys/arch/powerpc/include/signal.h Wed Oct 27 14:20:08 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: signal.h,v 1.24 2021/10/27 01:11:03 thorpej Exp $ */ +/* $NetBSD: signal.h,v 1.25 2021/10/27 18:20:08 christos Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank. @@ -39,6 +39,7 @@ typedef int sig_atomic_t; +#ifndef __LP64__ #if defined(_NETBSD_SOURCE) #include <sys/sigtypes.h> #include <machine/frame.h> @@ -65,5 +66,6 @@ struct sigcontext { #endif /* _LIBC || _KERNEL */ #endif /* _NETBSD_SOURCE */ +#endif /* __LP64__ */ #endif /* !_LOCORE */ #endif /* !_POWERPC_SIGNAL_H_ */