summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-12-08 22:10:28 +0000
committerjhb <jhb@FreeBSD.org>2000-12-08 22:10:28 +0000
commit3e12cdd63653239c3c71bf1e7042f1149134e630 (patch)
treec59b8b20ba2241ecac175fcc03035636328b457f /share
parentdd75d1d73b4f3034c1d9f621a49fff58b1d71eb1 (diff)
downloadFreeBSD-src-3e12cdd63653239c3c71bf1e7042f1149134e630.zip
FreeBSD-src-3e12cdd63653239c3c71bf1e7042f1149134e630.tar.gz
Fix some nits in the globs used to describe the various sets of atomic
operations. Submitted by: jake, jasone
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/atomic.910
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/atomic.9 b/share/man/man9/atomic.9
index eae8712..f6ed9b0 100644
--- a/share/man/man9/atomic.9
+++ b/share/man/man9/atomic.9
@@ -39,11 +39,11 @@
.Sh SYNOPSIS
.Fd #include <machine/atomic.h>
.Ft void
-.Fn atomic_add{acq_,rel_,}_<type> "volatile <type> *p" "<type> v"
+.Fn atomic_add_{acq_,rel_,}<type> "volatile <type> *p" "<type> v"
.Ft void
-.Fn atomic_clear{acq_,rel_,}_<type> "volatile <type> *p" "<type> v"
+.Fn atomic_clear_{acq_,rel_,}<type> "volatile <type> *p" "<type> v"
.Ft int
-.Fo atomic_cmpset{acq_,rel_,}_<type>
+.Fo atomic_cmpset_{acq_,rel_,}<type>
.Fa "volatile <type> *dst"
.Fa "<type> old"
.Fa "<type> new"
@@ -53,9 +53,9 @@
.Ft <type>
.Fn atomic_readandclear_<type> "volatile <type> *p"
.Ft void
-.Fn atomic_set{acq_,rel_,}_<type> "volatile <type> *p" "<type> v"
+.Fn atomic_set_{acq_,rel_,}<type> "volatile <type> *p" "<type> v"
.Ft void
-.Fn atomic_subtract{acq_,rel_},_<type> "volatile <type> *p" "<type> v"
+.Fn atomic_subtract_{acq_,rel_,}<type> "volatile <type> *p" "<type> v"
.Ft void
.Fn atomic_store_rel_<type> "volatile <type> *p" "<type> v"
.Sh DESCRIPTION
OpenPOWER on IntegriCloud