diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2000-12-08 22:10:28 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2000-12-08 22:10:28 +0000 |
| commit | baeb94c70d24a4761ea13e094e0ea6de9ffc7192 (patch) | |
| tree | 475cd15b5a4d7d64897f9e154bfd96dc162ecb44 | |
| parent | 7cc0979fd64b721c92c3dd4a8688b56e15c9a5f9 (diff) | |
Notes
| -rw-r--r-- | share/man/man9/atomic.9 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/atomic.9 b/share/man/man9/atomic.9 index eae8712ba7ac..f6ed9b0841df 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 |
