diff options
author | kib <kib@FreeBSD.org> | 2010-10-12 09:18:17 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2010-10-12 09:18:17 +0000 |
commit | 84212c755146fe8d191ba26c09911fe3411c965c (patch) | |
tree | 49b23685ac60a1e49a5edfa5657f8d82d84b941d /sys/i386/ibcs2 | |
parent | 47dfb514f552fe3cfa9cd48c17ec7385fccb0422 (diff) | |
download | FreeBSD-src-84212c755146fe8d191ba26c09911fe3411c965c.zip FreeBSD-src-84212c755146fe8d191ba26c09911fe3411c965c.tar.gz |
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
Diffstat (limited to 'sys/i386/ibcs2')
-rw-r--r-- | sys/i386/ibcs2/ibcs2_sysvec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/ibcs2/ibcs2_sysvec.c b/sys/i386/ibcs2/ibcs2_sysvec.c index 71d48a3..d69a244 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); |