OSDN Git Service

(split) Convert release and draft pages to UTF-8.
[linuxjm/LDP_man-pages.git] / release / man3 / initgroups.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
28 .\" Modified 2004-10-10 by aeb
29 .\"
30 .\" Japanese Version Copyright (c) 1998
31 .\"             ISHIKAWA Mutsumi, all rights reserved.
32 .\" Translated 1998-05-23, ISHIKAWA Mutsumi <ishikawa@linux.or.jp>
33 .\" Updated 2002-01-09, Kentaro Shirakata <argrath@ub32.org>
34 .\" Updated 2005-02-26, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
35 .\"
36 .TH INITGROUPS 3  2007-07-26 "GNU" "Linux Programmer's Manual"
37 .SH 名前
38 initgroups \- 追加のグループアクセスリストの初期化
39 .SH 書式
40 .nf
41 .B #include <sys/types.h>
42 .B #include <grp.h>
43 .sp
44 .BI "int initgroups(const char *" user ", gid_t " group );
45 .fi
46 .sp
47 .in -4n
48 glibc 向けの機能検査マクロの要件
49 .RB ( feature_test_macros (7)
50 参照):
51 .in
52 .sp
53 .BR initgroups ():
54 _BSD_SOURCE
55 .SH 説明
56 .BR initgroups ()
57 関数はグループデータベース \fI/etc/group\fP を読み
58 込んで、\fIuser\fP が所属している全てのグループを使って、グループアク
59 セスリストを初期化する。さらに、\fIgroup\fP に示されるグループもグルー
60 プアクセスリストに追加される。
61
62 .I user
63 引数は NULL であってはならない。
64 .SH 返り値
65 .BR initgroups ()
66 関数は、成功すると 0 を返す。
67 エラーの場合は \-1 を返し、
68 .I errno
69 を適切に設定する。
70 .SH エラー
71 .TP
72 .B ENOMEM
73 グループ情報構造体を配置するためのメモリが不足している。
74 .TP
75 .B EPERM
76 呼出しプロセスが十分な特権を持っていない。
77 この関数の裏で実行されるシステムコール
78 .BR setgroups (2)
79 も参照のこと。
80 .SH ファイル
81 .nf
82 \fI/etc/group\fP                グループデータベースファイル
83 .fi
84 .SH 準拠
85 SVr4, 4.3BSD.
86 .SH 関連項目
87 .BR getgroups (2),
88 .BR setgroups (2),
89 .BR credentials (7)