diff options
author | chuck <chuck@cvs.openbsd.org> | 1997-09-22 15:17:19 +0000 |
---|---|---|
committer | chuck <chuck@cvs.openbsd.org> | 1997-09-22 15:17:19 +0000 |
commit | fad8e16d2411526ff8d913825a3424dc13ca91d6 (patch) | |
tree | 511c0f552f89f7eb0881a2722e4d1f92636dc2d2 | |
parent | 6f7622c0d154871ece7fd95bc8a3162250664606 (diff) |
correct a comment
-rw-r--r-- | sys/vm/vm_kern.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c index b15b91e71e2..a0af430839c 100644 --- a/sys/vm/vm_kern.c +++ b/sys/vm/vm_kern.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_kern.c,v 1.4 1997/04/17 01:25:18 niklas Exp $ */ +/* $OpenBSD: vm_kern.c,v 1.5 1997/09/22 15:17:18 chuck Exp $ */ /* $NetBSD: vm_kern.c,v 1.17.6.1 1996/06/13 17:21:28 cgd Exp $ */ /* @@ -269,7 +269,7 @@ kmem_suballoc(parent, min, max, size, pageable) * this routine, ensures that we will never block in map or object waits. * * Note that this still only works in a uni-processor environment and - * when called at splhigh(). + * when called at splimp(). * * We don't worry about expanding the map (adding entries) since entries * for wired maps are statically allocated. |