diff options
author | 2002-01-09 18:19:28 +0000 | |
---|---|---|
committer | 2002-01-09 18:19:28 +0000 | |
commit | e4fd652c3f0f6da3a6f280daf5be5ff94da5791c (patch) | |
tree | 911a8e272d79456b4ddb4f9a0ef16905ad2cf4a6 | |
parent | open RDWR only for -w, RDONLY otherwise (diff) | |
download | wireguard-openbsd-e4fd652c3f0f6da3a6f280daf5be5ff94da5791c.tar.xz wireguard-openbsd-e4fd652c3f0f6da3a6f280daf5be5ff94da5791c.zip |
streams gone
-rw-r--r-- | sys/sys/lkm.h | 4 | ||||
-rw-r--r-- | usr.bin/modstat/modstat.c | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/sys/sys/lkm.h b/sys/sys/lkm.h index 47347051722..0724c86b46a 100644 --- a/sys/sys/lkm.h +++ b/sys/sys/lkm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: lkm.h,v 1.10 2002/01/07 19:23:32 ericj Exp $ */ +/* $OpenBSD: lkm.h,v 1.11 2002/01/09 18:20:52 ericj Exp $ */ /* $NetBSD: lkm.h,v 1.12 1996/02/09 18:25:13 christos Exp $ */ /* @@ -51,7 +51,6 @@ typedef enum loadmod { LM_SYSCALL, LM_VFS, LM_DEV, - LM_STRMOD, LM_EXEC, LM_MISC } MODTYPE; @@ -158,7 +157,6 @@ union lkm_generic { struct lkm_syscall *lkm_syscall; struct lkm_vfs *lkm_vfs; struct lkm_dev *lkm_dev; - struct lkm_strmod *lkm_strmod; struct lkm_exec *lkm_exec; struct lkm_misc *lkm_misc; }; diff --git a/usr.bin/modstat/modstat.c b/usr.bin/modstat/modstat.c index 8f2f1c9c620..f1d3a37cc8b 100644 --- a/usr.bin/modstat/modstat.c +++ b/usr.bin/modstat/modstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modstat.c,v 1.16 2002/01/08 17:16:38 ericj Exp $ */ +/* $OpenBSD: modstat.c,v 1.17 2002/01/09 18:19:28 ericj Exp $ */ /* * Copyright (c) 1993 Terrence R. Lambert. @@ -54,7 +54,6 @@ static char *type_names[] = { "SYSCALL", "VFS", "DEV", - "STRMOD", "EXEC", "MISC" }; |