Module Name: src
Committed By: pgoyette
Date: Tue Sep 11 08:25:44 UTC 2018
Modified Files:
src/sys/sys [pgoyette-compat]: module.h
Log Message:
Define vector for compat_netbsd32 version of sys_modctl()
To generate a diff of this commit:
cvs rdiff -u -r1.41.14.12 -r1.41.14.13 src/sys/sys/module.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/sys/module.h
diff -u src/sys/sys/module.h:1.41.14.12 src/sys/sys/module.h:1.41.14.13
--- src/sys/sys/module.h:1.41.14.12 Mon Sep 10 22:50:52 2018
+++ src/sys/sys/module.h Tue Sep 11 08:25:43 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: module.h,v 1.41.14.12 2018/09/10 22:50:52 pgoyette Exp $ */
+/* $NetBSD: module.h,v 1.41.14.13 2018/09/11 08:25:43 pgoyette Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -218,7 +218,8 @@ void module_print(const char *, ...) __p
extern char module_base[MODULE_BASE_SIZE];
extern const char *module_machine;
-extern int (*vec_compat32_80_modctl)(struct lwp *,
+struct netbsd32_modctl_args;
+extern int (*vec_compat32_80_modctl)(struct lwp *,
const struct netbsd32_modctl_args *, register_t *);
extern int compat32_80_modctl_compat_stub(struct lwp *,
const struct netbsd32_modctl_args *, register_t *);