Home
Search all pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
NetBSD
RedHat
Solaris
Others
GETGROUPS(2) OpenBSD Programmer's Manual GETGROUPS(2)
NAME
getgroups - get group access list
SYNOPSIS
#include <sys/types.h>
#include <unistd.h>
int
getgroups(int gidsetlen, gid_t *gidset);
DESCRIPTION
getgroups() gets the current group access list of the current user pro-
cess and stores it in the array gidset. The parameter gidsetlen indicates
the number of entries that may be placed in gidset. getgroups() returns
the actual number of groups returned in gidset. No more than
{NGROUPS_MAX} will ever be returned. If gidsetlen is 0, getgroups() re-
turns the number of groups without modifying the gidset array.
RETURN VALUES
A successful call returns the number of groups in the group set. A value
of -1 indicates that an error occurred, and the error code is stored in
the global variable errno.
ERRORS
The possible errors for getgroups() are:
[EINVAL] The argument gidsetlen is smaller than the number of groups
in the group set.
[EFAULT] The argument gidset specifies an invalid address.
SEE ALSO
setgroups(2), initgroups(3)
HISTORY
The getgroups() function call appeared in 4.2BSD.
OpenBSD 2.6 April 16, 1994 1
Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts Institute of Technology, Free Software Foundation, FreeBSD Inc., and others. |
(Corrections, notes, and links courtesy of RocketAware.com)
Up to: Process Limits: Identity - Process ownership and Identity
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
NetBSD
RedHat
Solaris
Others
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > man pages >
getgroups.2/
RocketAware.com is a service of Mib Software Copyright 1999, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|