Module Name: src
Committed By: wiz
Date: Mon May 18 12:39:17 UTC 2009
Modified Files:
src/lib/libc/atomic: membar_ops.3
Log Message:
Fix typo in Dd argument. Remove superfluous .Pp.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libc/atomic/membar_ops.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/atomic/membar_ops.3
diff -u src/lib/libc/atomic/membar_ops.3:1.1 src/lib/libc/atomic/membar_ops.3:1.2
--- src/lib/libc/atomic/membar_ops.3:1.1 Mon Jun 23 10:22:40 2008
+++ src/lib/libc/atomic/membar_ops.3 Mon May 18 12:39:17 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: membar_ops.3,v 1.1 2008/06/23 10:22:40 ad Exp $
+.\" $NetBSD: membar_ops.3,v 1.2 2009/05/18 12:39:17 wiz Exp $
.\"
.\" Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -27,7 +27,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd Febuary 11, 2007
+.Dd February 11, 2007
.Dt MEMBAR_OPS 3
.Os
.Sh NAME
@@ -62,7 +62,6 @@
.Pp
.Bl -tag -width "mem"
.It Fn membar_enter
-.Pp
Any store preceeding
.Fn membar_enter
will reach global visibility before all loads and stores following it.
@@ -71,7 +70,6 @@
is typically used in code that implements locking primitives to ensure
that a lock protects its data.
.It Fn membar_exit
-.Pp
All loads and stores preceding
.Fn membar_exit
will reach global visibility before any store that follows it.
@@ -80,15 +78,12 @@
is typically used in code that implements locking primitives to ensure
that a lock protects its data.
.It Fn membar_producer
-.Pp
All stores preceding the memory barrier will reach global visibility
before any stores after the memory barrier reach global visibility.
.It Fn membar_consumer
-.Pp
All loads preceding the memory barrier will complete before any loads
after the memory barrier complete.
.It Fn membar_sync
-.Pp
All loads and stores preceding the memory barrier will complete and
reach global visibility before any loads and stores after the memory
barrier complete and reach global visibility.