diff options
Diffstat (limited to 'sys/compat/linux32/common/linux32_exec.c')
| -rw-r--r-- | sys/compat/linux32/common/linux32_exec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/compat/linux32/common/linux32_exec.c b/sys/compat/linux32/common/linux32_exec.c index 84848156cf8..091809b6ec1 100644 --- a/sys/compat/linux32/common/linux32_exec.c +++ b/sys/compat/linux32/common/linux32_exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux32_exec.c,v 1.23 2018/05/06 13:40:51 kamil Exp $ */ +/* $NetBSD: linux32_exec.c,v 1.24 2018/08/10 21:44:58 pgoyette Exp $ */ /*- * Copyright (c) 1994-2007 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux32_exec.c,v 1.23 2018/05/06 13:40:51 kamil Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux32_exec.c,v 1.24 2018/08/10 21:44:58 pgoyette Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -55,6 +55,7 @@ __KERNEL_RCSID(0, "$NetBSD: linux32_exec.c,v 1.23 2018/05/06 13:40:51 kamil Exp #include <compat/linux32/linux32_syscall.h> extern struct sysent linux32_sysent[]; +extern const uint32_t linux32_sysent_nomodbits[]; extern const char * const linux32_syscallnames[]; extern char linux32_sigcode[], linux32_esigcode[]; @@ -74,6 +75,7 @@ struct emul emul_linux32 = { .e_nsysent = LINUX32_SYS_NSYSENT, #endif .e_sysent = linux32_sysent, + .e_nomodbits = linux32_sysent_nomodbits, .e_syscallnames = linux32_syscallnames, .e_sendsig = linux32_sendsig, .e_trapsignal = linux_trapsignal, |
