summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorart <art@openbsd.org>2002-07-12 01:42:54 +0000
committerart <art@openbsd.org>2002-07-12 01:42:54 +0000
commit635248850986fb0017033b4c863ed30a54f0a88c (patch)
tree959f218c11bf786c635c054b92a241490071ad49
parentEliminate list_has_sets() by eliminating its only use. Instead of (diff)
downloadwireguard-openbsd-635248850986fb0017033b4c863ed30a54f0a88c.tar.xz
wireguard-openbsd-635248850986fb0017033b4c863ed30a54f0a88c.zip
Fix vm -> uvm in a comment.
-rw-r--r--sys/kern/sysv_shm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c
index ae1e0a61ee3..2111777d549 100644
--- a/sys/kern/sysv_shm.c
+++ b/sys/kern/sysv_shm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysv_shm.c,v 1.25 2002/03/14 01:27:05 millert Exp $ */
+/* $OpenBSD: sysv_shm.c,v 1.26 2002/07/12 01:42:54 art Exp $ */
/* $NetBSD: sysv_shm.c,v 1.50 1998/10/21 22:24:29 tron Exp $ */
/*
@@ -246,7 +246,7 @@ sys_shmat(p, v, retval)
else
return EINVAL;
} else {
- /* This is just a hint to vm_mmap() about where to put it. */
+ /* This is just a hint to uvm_map() about where to put it. */
attach_va = round_page((vaddr_t)p->p_vmspace->vm_taddr +
MAXTSIZ + MAXDSIZ);
}