Fix some nits in the globs used to describe the various sets of atomic

operations.

Submitted by:	jake, jasone
This commit is contained in:
John Baldwin 2000-12-08 22:10:28 +00:00
parent 7cc0979fd6
commit baeb94c70d

View file

@ -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