diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2014-02-04 21:26:22 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2014-02-04 21:26:22 +0000 |
commit | 42639854806d0d2234c611be84802eccc9e8098a (patch) | |
tree | b76441d7017eaadb2220b6c430a980a18685b87b /share/man/man9 | |
parent | 4c3546194b26b4b2fd373c3fd49458e224ebf770 (diff) |
better history.
Diffstat (limited to 'share/man/man9')
-rw-r--r-- | share/man/man9/atomic_add_int.9 | 4 | ||||
-rw-r--r-- | share/man/man9/atomic_cas_uint.9 | 4 | ||||
-rw-r--r-- | share/man/man9/atomic_dec_int.9 | 4 | ||||
-rw-r--r-- | share/man/man9/atomic_inc_int.9 | 4 | ||||
-rw-r--r-- | share/man/man9/atomic_swap_uint.9 | 4 |
5 files changed, 15 insertions, 5 deletions
diff --git a/share/man/man9/atomic_add_int.9 b/share/man/man9/atomic_add_int.9 index 8d66d9b5bae..3e7f30b1cf0 100644 --- a/share/man/man9/atomic_add_int.9 +++ b/share/man/man9/atomic_add_int.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: atomic_add_int.9,v 1.3 2014/02/04 21:24:55 dlg Exp $ +.\" $OpenBSD: atomic_add_int.9,v 1.4 2014/02/04 21:26:21 dlg Exp $ .\" .\" Copyright (c) 2014 David Gwynne <dlg@openbsd.org> .\" All rights reserved. @@ -61,4 +61,6 @@ after the addition was performed. .Xr atomic_sub_int 9 .Sh HISTORY The atomic_add functions first appeared in +.Nx 5.0 +and .Ox 5.5 . diff --git a/share/man/man9/atomic_cas_uint.9 b/share/man/man9/atomic_cas_uint.9 index fafa674207c..32a2694f97e 100644 --- a/share/man/man9/atomic_cas_uint.9 +++ b/share/man/man9/atomic_cas_uint.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: atomic_cas_uint.9,v 1.3 2014/02/04 21:24:55 dlg Exp $ +.\" $OpenBSD: atomic_cas_uint.9,v 1.4 2014/02/04 21:26:21 dlg Exp $ .\" .\" Copyright (c) 2014 David Gwynne <dlg@openbsd.org> .\" All rights reserved. @@ -52,4 +52,6 @@ as it was before the attempt to swap it. .Xr atomic_swap_uint 9 .Sh HISTORY The atomic_cas functions first appeared in +.Nx 5.0 +and .Ox 5.5 . diff --git a/share/man/man9/atomic_dec_int.9 b/share/man/man9/atomic_dec_int.9 index 227d988669d..46f568a9c8f 100644 --- a/share/man/man9/atomic_dec_int.9 +++ b/share/man/man9/atomic_dec_int.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: atomic_dec_int.9,v 1.3 2014/02/04 21:24:55 dlg Exp $ +.\" $OpenBSD: atomic_dec_int.9,v 1.4 2014/02/04 21:26:21 dlg Exp $ .\" .\" Copyright (c) 2014 David Gwynne <dlg@openbsd.org> .\" All rights reserved. @@ -60,4 +60,6 @@ after the decrement was performed. .Xr atomic_inc_int 9 .Sh HISTORY The atomic_add functions first appeared in +.Nx 5.0 +and .Ox 5.5 . diff --git a/share/man/man9/atomic_inc_int.9 b/share/man/man9/atomic_inc_int.9 index 6df175d2009..5be5b958687 100644 --- a/share/man/man9/atomic_inc_int.9 +++ b/share/man/man9/atomic_inc_int.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: atomic_inc_int.9,v 1.3 2014/02/04 21:24:55 dlg Exp $ +.\" $OpenBSD: atomic_inc_int.9,v 1.4 2014/02/04 21:26:21 dlg Exp $ .\" .\" Copyright (c) 2014 David Gwynne <dlg@openbsd.org> .\" All rights reserved. @@ -60,4 +60,6 @@ after the increment was performed. .Xr atomic_dec_int 9 .Sh HISTORY The atomic_inc functions first appeared in +.Nx 5.0 +and .Ox 5.5 . diff --git a/share/man/man9/atomic_swap_uint.9 b/share/man/man9/atomic_swap_uint.9 index 2cf45021fc6..d90bf724f6b 100644 --- a/share/man/man9/atomic_swap_uint.9 +++ b/share/man/man9/atomic_swap_uint.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: atomic_swap_uint.9,v 1.3 2014/02/04 21:24:55 dlg Exp $ +.\" $OpenBSD: atomic_swap_uint.9,v 1.4 2014/02/04 21:26:21 dlg Exp $ .\" .\" Copyright (c) 2014 David Gwynne <dlg@openbsd.org> .\" All rights reserved. @@ -48,4 +48,6 @@ as it was before the swap operation. .Xr atomic_cas_uint 9 .Sh HISTORY The atomic_swap functions first appeared in +.Nx 5.0 +and .Ox 5.5 . |