aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/ibcs2/ibcs2_sysvec.c
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2010-10-12 09:18:17 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2010-10-12 09:18:17 +0000
commit78ae4338a24933c8a64094600625385b46688891 (patch)
tree49b23685ac60a1e49a5edfa5657f8d82d84b941d /sys/i386/ibcs2/ibcs2_sysvec.c
parent96f231fde99166a377ca359e1cd52e386137dd2c (diff)
downloadsrc-78ae4338a24933c8a64094600625385b46688891.tar.gz
src-78ae4338a24933c8a64094600625385b46688891.zip
Add macro DECLARE_MODULE_TIED to denote a module as requiring the
kernel of exactly the same __FreeBSD_version as the headers module was compiled against. Mark our in-tree ABI emulators with DECLARE_MODULE_TIED. The modules use kernel interfaces that the Release Engineering Team feel are not stable enough to guarantee they will not change during the life cycle of a STABLE branch. In particular, the layout of struct sysentvec is declared to be not part of the STABLE KBI. Discussed with: bz, rwatson Approved by: re (bz, kensmith) MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=213716
Diffstat (limited to 'sys/i386/ibcs2/ibcs2_sysvec.c')
-rw-r--r--sys/i386/ibcs2/ibcs2_sysvec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/ibcs2/ibcs2_sysvec.c b/sys/i386/ibcs2/ibcs2_sysvec.c
index 71d48a3dbc02..d69a24464f83 100644
--- a/sys/i386/ibcs2/ibcs2_sysvec.c
+++ b/sys/i386/ibcs2/ibcs2_sysvec.c
@@ -134,4 +134,4 @@ static moduledata_t ibcs2_mod = {
ibcs2_modevent,
0
};
-DECLARE_MODULE(ibcs2, ibcs2_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
+DECLARE_MODULE_TIED(ibcs2, ibcs2_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);