diff options
| author | 2009-12-09 16:29:56 +0000 | |
|---|---|---|
| committer | 2009-12-09 16:29:56 +0000 | |
| commit | 578651543070f733cbd46ac4bf1a1fe0219cbfc0 (patch) | |
| tree | 88be89b4fdb5af6c1c0e309765c98a140ad60bda /sys/compat/linux/linux_signal.c | |
| parent | Remove the clean gdt bit and leave the idt part in. (diff) | |
| download | wireguard-openbsd-578651543070f733cbd46ac4bf1a1fe0219cbfc0.tar.xz wireguard-openbsd-578651543070f733cbd46ac4bf1a1fe0219cbfc0.zip | |
Add entries in compat signal mapping arrays for SIGTHR.
Prompted by parfait noticing overflows in ibcs2/svr4 which
are now changed to being NSIG sized like the others as
suggested by tedu.
ok tedu@ miod@ guenther@
Diffstat (limited to 'sys/compat/linux/linux_signal.c')
| -rw-r--r-- | sys/compat/linux/linux_signal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_signal.c b/sys/compat/linux/linux_signal.c index 145ae4ca70f..a3de140578c 100644 --- a/sys/compat/linux/linux_signal.c +++ b/sys/compat/linux/linux_signal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_signal.c,v 1.13 2008/05/01 11:53:26 miod Exp $ */ +/* $OpenBSD: linux_signal.c,v 1.14 2009/12/09 16:29:56 jsg Exp $ */ /* $NetBSD: linux_signal.c,v 1.10 1996/04/04 23:51:36 christos Exp $ */ /* @@ -98,6 +98,7 @@ int bsd_to_linux_sig[NSIG] = { 0, /* SIGINFO */ LINUX_SIGUSR1, LINUX_SIGUSR2, + 0, /* SIGTHR */ }; int linux_to_bsd_sig[LINUX__NSIG] = { |
