Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/sys/compat/linux/common Fix fallout from ticket #1354 by ...
details: https://anonhg.NetBSD.org/src/rev/3327da7cdb2c
branches: netbsd-7
changeset: 800186:3327da7cdb2c
user: snj <snj%NetBSD.org@localhost>
date: Wed Apr 19 16:58:28 2017 +0000
description:
Fix fallout from ticket #1354 by applying:
sys/compat/linux/common/linux_signal.h: revision 1.32
Provide a dummy linux_sigset_t for all architectures that do not have
any machdep one. This make kdump compile again.
diffstat:
sys/compat/linux/common/linux_signal.h | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (18 lines):
diff -r 399238d8bf53 -r 3327da7cdb2c sys/compat/linux/common/linux_signal.h
--- a/sys/compat/linux/common/linux_signal.h Tue Apr 18 19:54:52 2017 +0000
+++ b/sys/compat/linux/common/linux_signal.h Wed Apr 19 16:58:28 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_signal.h,v 1.30.38.1 2017/04/17 05:19:09 snj Exp $ */
+/* $NetBSD: linux_signal.h,v 1.30.38.2 2017/04/19 16:58:28 snj Exp $ */
/*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -46,6 +46,8 @@
#include <compat/linux/arch/arm/linux_signal.h>
#elif defined(__amd64__)
#include <compat/linux/arch/amd64/linux_signal.h>
+#else
+typedef void linux_sigset_t;
#endif
typedef struct {
Home |
Main Index |
Thread Index |
Old Index