OSDN Git Service

(split) LDP: Release pages for LDP v3.39.
[linuxjm/LDP_man-pages.git] / release / man3 / daemon.3
1 .\" Copyright (c) 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)daemon.3    8.1 (Berkeley) 6/9/93
33 .\" Added mentioning of glibc weirdness wrt unistd.h. 5/11/98, Al Viro
34 .\"*******************************************************************
35 .\"
36 .\" This file was generated with po4a. Translate the source file.
37 .\"
38 .\"*******************************************************************
39 .TH DAEMON 3 2009\-12\-05 GNU "Linux Programmer's Manual"
40 .SH 名前
41 daemon \- バックグラウンドで動作させる
42 .SH 書式
43 \fB#include <unistd.h>\fP
44 .sp
45 \fBint daemon(int \fP\fInochdir\fP\fB, int \fP\fInoclose\fP\fB);\fP
46 .sp
47 .in -4n
48 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
49 .in
50 .sp
51 \fBdaemon\fP(): _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE\ <\ 500)
52 .SH 説明
53 \fBdaemon\fP()  は、制御端末から分離させてシステムデーモンとして動作させたい プログラムのための関数である。
54 .PP
55 \fInochdir\fP が 0 の場合、 \fBdaemon\fP()  は呼び出したプロセスの現在の作業ディレクトリ (current working
56 directory)  をルートディレクトリ ("/") に変更する。 それ以外の場合、現在の作業ディレクトリは変更されない。
57 .PP
58 \fInoclose\fP が 0 の場合、 \fBdaemon\fP()  は標準入力・標準出力・標準エラーを \fI/dev/null\fP にリダイレクトする。
59 それ以外の場合、これらのファイル・ディスクリプタは変更されない。
60 .SH 返り値
61 .\" not .IR in order not to underline _
62 (この関数が fork して \fBfork\fP(2)  が成功すると、親プロセスでは \fB_exit\fP(2)
63 を呼び出すので、これ以降のエラーは子プロセスからしか見れない)。 成功した場合、 \fBdaemon\fP()  は 0 を返す。 エラーが起こった場合、
64 \fBdaemon\fP()  は \-1 を返す。 さらに、 \fIerrno\fP に \fBfork\fP(2)  と \fBsetsid\fP(2)
65 に関して規定されたエラーを設定する。
66 .SH 準拠
67 POSIX.1\-2001 にはない。 同様の関数が BSD には見られる。 \fBdaemon\fP()  関数は 4.4BSD で始めて登場した。
68 .SH 注意
69 \fI/dev/null\fP は存在するが、想定するメジャー番号とマイナー番号の キャラクタデバイスでなかった場合、 glibc の実装でも \-1
70 が返される。 この場合、 \fIerrno\fP が設定される必要はない。
71 .SH 関連項目
72 \fBfork\fP(2), \fBsetsid\fP(2)