aboutsummaryrefslogtreecommitdiff
path: root/ja_JP.eucJP/man/man2/setpgid.2
blob: afbbdca284b24ea8aada218a443e647d32312bd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.\" Copyright (c) 1980, 1991, 1993
.\"	The Regents of the University of California.  All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\"    must display the following acknowledgement:
.\"	This product includes software developed by the University of
.\"	California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\"    may be used to endorse or promote products derived from this software
.\"    without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\"     @(#)setpgid.2	8.1 (Berkeley) 6/4/93
.\" %FreeBSD: src/lib/libc/sys/setpgid.2,v 1.5.2.5 2001/08/17 15:42:46 ru Exp %
.\"
.\" $FreeBSD: doc/ja_JP.eucJP/man/man2/setpgid.2,v 1.4 2001/07/29 05:15:14 horikawa Exp $
.Dd June 4, 1993
.Dt SETPGID 2
.Os
.Sh 名称
.Nm setpgid ,
.Nm setpgrp
.Nd プロセスグループを設定する
.Sh ライブラリ
.Lb libc
.Sh 書式
.Fd #include <unistd.h>
.Ft int
.Fn setpgid "pid_t pid" "pid_t pgrp"
.Ft int
.Fn setpgrp "pid_t pid" "pid_t pgrp"
.Sh 解説
.Fn setpgid
は、指定されたプロセス
.Fa pid
のプロセスグループを指定された
.Ar pgrp
に設定します。
.Fa pid
が 0 の場合、呼び出しは現在のプロセスに適用されます。
.Pp
呼び出し側がスーパユーザでない場合、影響を受けるプロセスは、呼び出し側と同じ
実効ユーザ ID を持っているか、または呼び出し側プロセスの子孫である必要が
あります。
.Sh 戻り値
.Fn setpgid
は、正常に処理を完了したときに 0 を返します。要求が失敗した場合は、 -1
が返され、理由を示すグローバル変数
.Va errno
が設定されます。
.Sh エラー
.Fn setpgid
は、次の場合に処理を失敗し、プロセスグループは変更されません。
.Bl -tag -width Er
.It Bq Er ESRCH
要求されたプロセスが存在しません。
.It Bq Er EPERM
要求されたプロセスの実効ユーザ ID は呼び出し側の実効ユーザ ID と
異なっており、プロセスは呼び出し側プロセスの子孫ではありません。
.El
.Sh 関連項目
.Xr getpgrp 2
.Sh 規格
.Fn setpgid
関数呼び出しは
.St -p1003.1-90
に準拠します。
.Sh 互換性
.Fn setpgrp
は、
.Fn setpgid
と同一であり、
.Bx
の旧バージョンとの呼び出し規約互換のために保持されています。