]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/posix1e/cap_get_flag.3
This commit was generated by cvs2svn to compensate for changes in r75264,
[FreeBSD/FreeBSD.git] / lib / libc / posix1e / cap_get_flag.3
1 .\"-
2 .\" Copyright (c) 2000 Robert N. M. Watson
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .\" TrustedBSD Project - support for POSIX.1e process capabilities 
29 .\"
30 .Dd April 1, 2000
31 .Dt CAP_GET_FLAG 3
32 .Os FreeBSD
33 .Sh NAME
34 .Nm cap_get_flag
35 .Nd Get the Value of a Capability Flag
36 .Sh LIBRARY
37 .Lb libc
38 .Sh SYNOPSIS
39 .Fd #include <sys/types.h>
40 .Fd #include <sys/capability.h>
41 .Ft int
42 .Fn cap_get_flag "cap_t cap_p" "cap_value_t cap" "cap_flag_t flag" "cap_flag_value_t *value_p"
43 .Sh DESCRIPTION
44 The function
45 .Fn cap_get_flag
46 shall obtain the current value of the capability flag
47 .Ar flag
48 of the capability
49 .Ar cap
50 from the capability state in working storage identified by
51 .Ar cap_p
52 and place it into the location pointed to by
53 .Ar value_p .
54 .Sh IMPLEMENTATION NOTES
55 FreeBSD's support for POSIX.1e interfaces and features is still under
56 development at this time.
57 .Sh RETURN VALUES
58 Upon successful completion, the function shall return a value of zero.
59 Otherwise, a value of -1 shall be returned and
60 .Va errno
61 set to indicate the error.
62 .Sh ERRORS
63 If any of the following conditions occur, the
64 .Fn cap_get_flag
65 function shall return -1 and set
66 .Va errno
67 to the corresponding value:
68 .Bl -tag -width Er
69 .It Bq Er EINVAL
70 At least one of the values of the
71 .Ar cap_p ,
72 .Ar cap ,
73 .Ar flag
74 and
75 .Ar value_p
76 arguments does not refer to the corresponding entity.
77 .El
78 .Sh SEE ALSO
79 .Xr cap 3 ,
80 .Xr cap_set_flag 3 ,
81 .Xr posix1e 3
82 .Sh STANDARDS
83 POSIX.1e is described in IEEE POSIX.1e draft 17.  Discussion
84 of the draft continues on the cross-platform POSIX.1e implementation
85 mailing list.  To join this list, see the
86 .Fx
87 POSIX.1e implementation
88 page for more information.
89 .Sh HISTORY
90 Support for POSIX.1e Capabilities was developed as part of the TrustedBSD
91 Project.
92 POSIX.1e Capability support was introduced in
93 .Fx 5.0 ,
94 and development continues.
95 .Sh AUTHORS
96 .An Robert N M Watson