aboutsummaryrefslogtreecommitdiff
path: root/doc/RCS/capget.2,v
diff options
context:
space:
mode:
Diffstat (limited to 'doc/RCS/capget.2,v')
-rw-r--r--doc/RCS/capget.2,v66
1 files changed, 0 insertions, 66 deletions
diff --git a/doc/RCS/capget.2,v b/doc/RCS/capget.2,v
deleted file mode 100644
index 6a07639..0000000
--- a/doc/RCS/capget.2,v
+++ /dev/null
@@ -1,66 +0,0 @@
-head 1.1;
-access;
-symbols;
-locks; strict;
-comment @# @;
-
-
-1.1
-date 98.05.24.21.05.20; author morgan; state Exp;
-branches;
-next ;
-
-
-desc
-@man page for the kernel API
-@
-
-
-1.1
-log
-@Initial revision
-@
-text
-@.\"
-.\" $Id: _setproccap.2,v 1.1 1997/04/28 00:54:52 morgan Exp $
-.\" written by Andrew Morgan <morgan@@linux.kernel.org>
-.\"
-.TH CAPGET 2 "17th May 1998" "Linux 2.1" "Linux Programmer's Manual"
-.SH NAME
-capget, capset \- set/get process capabilities
-.SH SYNOPSIS
-.B #undef _POSIX_SOURCE
-.br
-.B #include <sys/capability.h>
-.sp
-.BI "int capget(cap_user_header_t " header ", cap_user_data_t " data );
-.sp
-.BI "int capset(cap_user_header_t " header ", const cap_user_data_t " data );
-.SH DESCRIPTION
-These two functions are the raw kernel interface for getting and
-setting capabilities. The kernel API is likely to change and use of
-these functions (in particular the format of the
-.B cap_user_*_t
-types) is subject to change with each kernel revision.
-.sp
-These system calls are specific to Linux.
-The portable interfaces are
-.IR cap_set_proc (3)
-and
-.IR cap_get_proc (3).
-.SH "RETURN VALUE"
-On success, zero is returned. On error, -1 is returned, and
-.I errno
-is set appropriately.
-.SH ERRORS
-.TP
-.SB EINVAL
-One of the arguments was invalid.
-.TP
-.SB EPERM
-An attempt was made to add a capability to the Permitted set, or to set
-a capability in the Effective or Inheritable sets that is not in the
-Permitted set.
-
-
-@