Sync usage with man page.
[netbsd-mini2440.git] / share / man / man9 / store.9
blobdb1f28ce6fba3815ac0804d767a941b7c232e692
1 .\"     $NetBSD: store.9,v 1.9 2002/02/13 08:18:52 ross Exp $
2 .\"
3 .\" Copyright (c) 1996 Jason R. Thorpe.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed by Kenneth Stailey.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 3. All advertising materials mentioning features or use of this software
17 .\"    must display the following acknowledgement:
18 .\"     This product includes software developed for the NetBSD Project
19 .\"     by Jason R. Thorpe.
20 .\" 4. The name of the author may not be used to endorse or promote products
21 .\"    derived from this software without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .Dd January 7, 1996
36 .Dt STORE 9
37 .Os
38 .Sh NAME
39 .Nm store ,
40 .Nm subyte ,
41 .Nm suibyte ,
42 .Nm susword ,
43 .Nm suswintr ,
44 .Nm suword ,
45 .Nm suiword
46 .Nd store data to user-space
47 .Sh SYNOPSIS
48 .In sys/types.h
49 .In sys/systm.h
50 .Ft int
51 .Fn subyte "void *base" "int c"
52 .Ft int
53 .Fn susword "void *base" "short c"
54 .Ft int
55 .Fn suswintr "void *base" "short c"
56 .Ft int
57 .Fn suword "void *base" "long c"
58 .Sh DESCRIPTION
59 The
60 .Nm
61 functions are designed to copy small amounts of data to the user-space of the
62 currently running process.
63 .Pp
64 The
65 .Nm
66 routines provide the following functionality:
67 .Bl -tag -width "suswintr()"
68 .It Fn subyte
69 Stores a byte of data to the user-space address
70 .Fa base .
71 .It Fn susword
72 Stores a short word of data to the user-space address
73 .Fa base .
74 .It Fn suswintr
75 Stores a short word of data to the user-space address
76 .Fa base .
77 This function is safe to call during an interrupt context.
78 .It Fn suword
79 Stores a word of data to the user-space address
80 .Fa base .
81 .El
82 .Sh RETURN VALUES
83 The
84 .Nm
85 functions return 0 on success or -1 on failure.
86 .Sh SEE ALSO
87 .Xr copy 9 ,
88 .Xr fetch 9