summaryrefslogtreecommitdiff
path: root/share/man/man9
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2014-10-22 23:56:48 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2014-10-22 23:56:48 +0000
commit94c9ef987ba06e5207759a01ae8b71f4d2880f5a (patch)
tree6bc088e19b77e184e1268c7824a8a2f2dd627b0e /share/man/man9
parenta1f0a87d1026a85e723ee049539d0d784ffc2be8 (diff)
make [bl]emtoh{16,32,64} take volatile const foo *, not volatile foo *
while in the manpage add volatile where the code has it too. ok miod@ guenther@
Diffstat (limited to 'share/man/man9')
-rw-r--r--share/man/man9/bemtoh32.928
1 files changed, 14 insertions, 14 deletions
diff --git a/share/man/man9/bemtoh32.9 b/share/man/man9/bemtoh32.9
index 74d489a8b5a..04ec84db618 100644
--- a/share/man/man9/bemtoh32.9
+++ b/share/man/man9/bemtoh32.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bemtoh32.9,v 1.4 2014/03/14 11:53:35 jmc Exp $
+.\" $OpenBSD: bemtoh32.9,v 1.5 2014/10/22 23:56:47 dlg Exp $
.\"
.\" Copyright (c) 2014 David Gwynne <dlg@openbsd.org>
.\" All rights reserved.
@@ -15,7 +15,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: March 14 2014 $
+.Dd $Mdocdate: October 22 2014 $
.Dt BEMTOH32 9
.Os
.Sh NAME
@@ -35,29 +35,29 @@
.Sh SYNOPSIS
.In sys/types.h
.Ft uint16_t
-.Fn bemtoh16 "uint16_t *m"
+.Fn bemtoh16 "volatile const uint16_t *m"
.Ft uint32_t
-.Fn bemtoh32 "uint32_t *m"
+.Fn bemtoh32 "volatile const uint32_t *m"
.Ft uint64_t
-.Fn bemtoh64 "uint64_t *m"
+.Fn bemtoh64 "volatile const uint64_t *m"
.Ft uint16_t
-.Fn lemtoh16 "uint16_t *m"
+.Fn lemtoh16 "volatile const uint16_t *m"
.Ft uint32_t
-.Fn lemtoh32 "uint32_t *m"
+.Fn lemtoh32 "volatile const uint32_t *m"
.Ft uint64_t
-.Fn lemtoh64 "uint64_t *m"
+.Fn lemtoh64 "volatile const uint64_t *m"
.Ft void
-.Fn htobem16 "uint16_t *m" "uint16_t v"
+.Fn htobem16 "volatile uint16_t *m" "uint16_t v"
.Ft void
-.Fn htobem32 "uint32_t *m" "uint32_t v"
+.Fn htobem32 "volatile uint32_t *m" "uint32_t v"
.Ft void
-.Fn htobem64 "uint64_t *m" "uint64_t v"
+.Fn htobem64 "volatile uint64_t *m" "uint64_t v"
.Ft void
-.Fn htolem16 "uint16_t *m" "uint16_t v"
+.Fn htolem16 "volatile uint16_t *m" "uint16_t v"
.Ft void
-.Fn htolem32 "uint32_t *m" "uint32_t v"
+.Fn htolem32 "volatile uint32_t *m" "uint32_t v"
.Ft void
-.Fn htolem64 "uint64_t *m" "uint64_t v"
+.Fn htolem64 "volatile uint64_t *m" "uint64_t v"
.Sh DESCRIPTION
This API provides a way to take advantage of an architecture's ability
to load and store words in memory of different endians.