diff options
| author | martin <martin@NetBSD.org> | 2017-01-02 20:10:44 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2017-01-02 20:10:44 +0000 |
| commit | 892be7f23c86c64b2babf3dbfdae815f8065b71c (patch) | |
| tree | aa81efa9ca81575990bcab92a033110e6c8e70c0 /sys/compat/linux | |
| parent | ed603d26945777c32adba1c749a4a84b32f5759c (diff) | |
Provide a dummy linux_sigset_t for all architectures that do not have
any machdep one. This make kdump compile again.
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/common/linux_signal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/compat/linux/common/linux_signal.h b/sys/compat/linux/common/linux_signal.h index eb7286ac1cf..b62531f476f 100644 --- a/sys/compat/linux/common/linux_signal.h +++ b/sys/compat/linux/common/linux_signal.h @@ -1,4 +1,4 @@ -/* $NetBSD: linux_signal.h,v 1.31 2017/01/02 16:32:10 manu Exp $ */ +/* $NetBSD: linux_signal.h,v 1.32 2017/01/02 20:10:44 martin 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 { |
