summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2013-06-02 16:45:12 +0000
committerguenther <guenther@openbsd.org>2013-06-02 16:45:12 +0000
commitb018079ceea736daf2e7ed1fb10c098c6db6c6e3 (patch)
tree9467e811b883d3382100be5931c599a6b595778c /sys
parentCoredumping is now single-threaded, so update comment about locking (diff)
downloadwireguard-openbsd-b018079ceea736daf2e7ed1fb10c098c6db6c6e3.tar.xz
wireguard-openbsd-b018079ceea736daf2e7ed1fb10c098c6db6c6e3.zip
Fix descriptions of structures
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/amd64/pmap.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c
index a6584ca56c6..20ff68fd1f1 100644
--- a/sys/arch/amd64/amd64/pmap.c
+++ b/sys/arch/amd64/amd64/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.64 2013/06/02 16:38:05 guenther Exp $ */
+/* $OpenBSD: pmap.c,v 1.65 2013/06/02 16:45:12 guenther Exp $ */
/* $NetBSD: pmap.c,v 1.3 2003/05/08 18:13:13 thorpej Exp $ */
/*
@@ -161,10 +161,9 @@
* in the upper layer.
*
* data structures we use include:
- *
- * - struct pmap: describes the address space of one thread
+ * - struct pmap: describes the address space of one process
* - struct pv_entry: describes one <PMAP,VA> mapping of a PA
- * - pmap_remove_record: a list of virtual addresses whose mappings
+ * - struct pg_to_free: a list of virtual addresses whose mappings
* have been changed. used for TLB flushing.
*/