summaryrefslogtreecommitdiffstats
path: root/sys/i386/ibcs2
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-01-17 20:39:08 +0000
committerpeter <peter@FreeBSD.org>1999-01-17 20:39:08 +0000
commita1afd11da0b182acc5303b95ea4fdc6acd9cf3da (patch)
treee563c0fe4273870843b81e095971fe22d691590d /sys/i386/ibcs2
parentc2ffd97e0de82704b16260273fc72b4036977358 (diff)
downloadFreeBSD-src-a1afd11da0b182acc5303b95ea4fdc6acd9cf3da.zip
FreeBSD-src-a1afd11da0b182acc5303b95ea4fdc6acd9cf3da.tar.gz
Remove references to an LKM that isn't built any more.
Diffstat (limited to 'sys/i386/ibcs2')
-rw-r--r--sys/i386/ibcs2/ibcs2_sysvec.c4
-rw-r--r--sys/i386/ibcs2/imgact_coff.c6
2 files changed, 4 insertions, 6 deletions
diff --git a/sys/i386/ibcs2/ibcs2_sysvec.c b/sys/i386/ibcs2/ibcs2_sysvec.c
index d9ca78c..bc0fa61 100644
--- a/sys/i386/ibcs2/ibcs2_sysvec.c
+++ b/sys/i386/ibcs2/ibcs2_sysvec.c
@@ -27,7 +27,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: ibcs2_sysvec.c,v 1.11 1998/11/15 15:33:51 bde Exp $
+ * $Id: ibcs2_sysvec.c,v 1.12 1998/12/14 18:53:47 dt Exp $
*/
#include <sys/param.h>
@@ -61,7 +61,6 @@ struct sysentvec ibcs2_svr3_sysvec = {
NULL /* we don't have a COFF coredump function */
};
-#ifndef LKM
/*
* Create an "ibcs2" module that does nothing but allow checking for
* the presence of the subsystem.
@@ -78,4 +77,3 @@ moduledata_t ibcs2_mod = {
0
};
DECLARE_MODULE(ibcs2, ibcs2_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
-#endif
diff --git a/sys/i386/ibcs2/imgact_coff.c b/sys/i386/ibcs2/imgact_coff.c
index 7793f4c..3632b74 100644
--- a/sys/i386/ibcs2/imgact_coff.c
+++ b/sys/i386/ibcs2/imgact_coff.c
@@ -26,7 +26,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: imgact_coff.c,v 1.32 1998/10/13 08:24:36 dg Exp $
+ * $Id: imgact_coff.c,v 1.33 1998/10/16 03:55:00 peter Exp $
*/
#include <sys/param.h>
@@ -475,7 +475,7 @@ exec_coff_imgact(imgp)
/*
* Tell kern_execve.c about it, with a little help from the linker.
* Since `const' objects end up in the text segment, TEXT_SET is the
- * correct directive to use. Do not staticize; used by coff LKM.
+ * correct directive to use.
*/
-const struct execsw coff_execsw = { exec_coff_imgact, "coff" };
+static const struct execsw coff_execsw = { exec_coff_imgact, "coff" };
EXEC_SET(coff, coff_execsw);
OpenPOWER on IntegriCloud