mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
Fix some nits in the globs used to describe the various sets of atomic
operations. Submitted by: jake, jasone
This commit is contained in:
parent
7cc0979fd6
commit
baeb94c70d
1 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue