Subversion Repositories HelenOS-historic

Rev

Rev 1297 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1297 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup generic
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
/**
35
/**
30
 * @file    cap.h
36
 * @file
31
 * @brief   Capabilities definitions.
37
 * @brief   Capabilities definitions.
32
 *
38
 *
33
 * Capabilities represent virtual rights that entitle their
39
 * Capabilities represent virtual rights that entitle their
34
 * holder to perform certain security sensitive tasks.
40
 * holder to perform certain security sensitive tasks.
35
 *
41
 *
Line 80... Line 86...
80
 
86
 
81
extern __native sys_cap_grant(sysarg64_t *uspace_taskid_arg, cap_t caps);
87
extern __native sys_cap_grant(sysarg64_t *uspace_taskid_arg, cap_t caps);
82
extern __native sys_cap_revoke(sysarg64_t *uspace_taskid_arg, cap_t caps);
88
extern __native sys_cap_revoke(sysarg64_t *uspace_taskid_arg, cap_t caps);
83
 
89
 
84
#endif
90
#endif
-
 
91
 
-
 
92
 /** @}
-
 
93
 */
-
 
94