8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man2 / getuid.2
blob6d22e6fd6bb6cec65ce83fb4f6ccc4ddca1501b8
1 '\" te
2 .\" Copyright (c) 1996, Sun Microsystems, Inc. All Rights Reserved.
3 .\" Copyright 1989 AT&T
4 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
5 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
6 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
7 .TH GETUID 2 "Dec 28, 1996"
8 .SH NAME
9 getuid, geteuid, getgid, getegid \- get real user, effective user, real group,
10 and effective group IDs
11 .SH SYNOPSIS
12 .LP
13 .nf
14 #include <sys/types.h>
15 #include <unistd.h>
17 \fBuid_t\fR \fBgetuid\fR(\fBvoid\fR);
18 .fi
20 .LP
21 .nf
22 \fBuid_t\fR \fBgeteuid\fR(\fBvoid\fR);
23 .fi
25 .LP
26 .nf
27 \fBgid_t\fR \fBgetgid\fR(\fBvoid\fR);
28 .fi
30 .LP
31 .nf
32 \fBgid_t\fR \fBgetegid\fR(\fBvoid\fR);
33 .fi
35 .SH DESCRIPTION
36 .sp
37 .LP
38 The \fBgetuid()\fR function returns the real user \fBID\fR of the calling
39 process. The real user \fBID\fR identifies the person who is logged in.
40 .sp
41 .LP
42 The \fBgeteuid()\fR function returns the effective user \fBID\fR of the calling
43 process. The effective user \fBID\fR gives the process various permissions
44 during execution of "set-user-ID" mode processes which use  \fBgetuid()\fR to
45 determine the real user \fBID\fR of the process that invoked them.
46 .sp
47 .LP
48 The \fBgetgid()\fR function returns the real group \fBID\fR of the calling
49 process.
50 .sp
51 .LP
52 The \fBgetegid()\fR function returns the effective group \fBID\fR of the
53 calling process.
54 .SH ATTRIBUTES
55 .sp
56 .LP
57 See \fBattributes\fR(5) for descriptions of the following attributes:
58 .sp
60 .sp
61 .TS
62 box;
63 c | c
64 l | l .
65 ATTRIBUTE TYPE  ATTRIBUTE VALUE
67 Interface Stability     Standard
69 MT-Level        Async-Signal-Safe
70 .TE
72 .SH SEE ALSO
73 .sp
74 .LP
75 \fBIntro\fR(2), \fBsetuid\fR(2), \fBattributes\fR(5), \fBstandards\fR(5)