OSDN Git Service

(split) Convert contrib and obsolete pages to UTF-8.
[linuxjm/LDP_man-pages.git] / obsolete / man2 / sigpause.2
1 .\" Copyright (C) 2004 Andries Brouwer (aeb@cwi.nl)
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 .\" Japanese Version Copyright (c) 1997 HANATAKA Shinya
24 .\"         all rights reserved.
25 .\" Translated Mon Mar  3 23:33:12 JST 1997
26 .\"         by HANATAKA Shinya <hanataka@abyss.rim.or.jp>
27 .\"
28 .\"WORD:        signal                  シグナル
29 .\"WORD:        interrupt               割り込み
30 .\"WORD:        mask                    マスク
31 .\"WORD:        block                   ブロックする
32 .\"
33 .TH SIGPAUSE 2 2004-05-10 "Linux 2.6" "Linux Programmer's Manual"
34 .\"O .SH NAME
35 .SH 名前
36 .\"O sigpause \- atomically release blocked signals and wait for interrupt
37 sigpause \- ブロックされたシグナルをアトミックに解放 (release) して割り込み (interrupt) を待つ
38 .\"O .SH SYNOPSIS
39 .SH 書式
40 .nf
41 .B #include <signal.h>
42 .sp
43 .BI "int sigpause(int " sigmask ");  /* BSD */"
44 .sp
45 .BI "int sigpause(int " sig ");      /* Unix95 */"
46 .fi
47 .\"O .SH DESCRIPTION
48 .SH 説明
49 .\"O Don't use this function. Use
50 .\"O .BR sigsuspend (2)
51 .\"O instead.
52 この関数を使わないこと。
53 代わりに
54 .BR sigsuspend (2)
55 を使うこと。
56 .LP
57 .\"O The function
58 .\"O .BR sigpause ()
59 .\"O is designed to wait for some signal.
60 関数
61 .BR sigpause ()
62 はシグナルを待つように設計されている。
63 .\"O It changes the process' signal mask (set of blocked signals),
64 .\"O and then waits for a signal to arrive.
65 この関数はプロセスのシグナルマスク (ブロックされたシグナルのセット) を変更し、
66 シグナルが到着するのを待つ。
67 .\"O Upon arrival of a signal, the original signal mask is restored.
68 シグナルが到着すると、シグナルマスクは元に戻される。
69 .\"O .SH "RETURN VALUE"
70 .SH 返り値
71 .\"O If
72 .\"O .BR sigpause ()
73 .\"O returns, it was interrupted by a signal and the return value is \-1
74 .\"O with
75 .\"O .I errno
76 .\"O set to
77 .\"O .BR EINTR .
78 .BR sigpause ()
79 が返った場合、この関数はシグナルによって割り込まれており、
80 返り値は \-1 で、
81 .I errno
82
83 .B EINTR
84 に設定される。
85 .\"O .SH HISTORY
86 .SH 履歴
87 .\"O The classical BSD version of this function appeared in 4.2BSD.
88 .\"O It sets the process' signal mask to
89 .\"O .IR sigmask .
90 この関数の古典的な BSD 版は 4.2BSD で登場した。
91 この関数はプロセスのシグナルマスクを
92 .I sigmask
93 に設定する。
94 .\"O When the number of signals was increased above 32, this version
95 .\"O was replaced by the incompatible Unix95 one, which removes only the
96 .\"O specified signal
97 .\"O .I sig
98 .\"O from the process' signal mask.
99 シグナルの数が 32 以上に増加したときに、
100 BSD 版は互換性のない Unix95 版に置き換えられた。
101 Unix95 版は、指定されたシグナル
102 .I sig
103 をプロセスのシグナルマスクから削除するだけである。
104 .\" __xpg_sigpause: Unix 95, spec 1170, SVID, SVR4, XPG
105 .\"O The unfortunate situation with two incompatible functions with the
106 .\"O same name was solved by the
107 .\"O .BR \%sigsuspend (2)
108 .\"O function, that takes a
109 .\"O .B "sigset_t *"
110 .\"O parameter (instead of an int).
111 同じ名前で互換性のない 2 つの関数があるという不幸な事態は、
112 .BR \%sigsuspend (2)
113 関数によって解消された。
114 この関数は (int の代わりに)
115 .B "sigset_t *"
116 引き数をとる。
117 .LP
118 .\"O On Linux, this routine is a system call only on the Sparc (sparc64)
119 .\"O architecture. Libc4 and libc5 only know about the BSD version.
120 .\"O Glibc uses the BSD version unless _XOPEN_SOURCE is defined.
121 Linux では、このルーチンは Sparc (sparc64) アーキテクチャでのみ
122 システムコールとなっている。
123 libc4 と libc5 には BSD 版しかない。
124 glibc では  _XOPEN_SOURCE が定義されない限り、BSD 版を使う。
125 .\"O .\" .SH NOTE
126 .\"O .\" For the BSD version, one usually uses a zero
127 .\"O .\" .I sigmask
128 .\"O .\" to indicate that no signals are to be blocked.
129 .\" .SH 注意
130 .\" BSD 版では、
131 .\" .RI 「 sigmask
132 .\" を 0 にして、どのシグナルもブロックされないようにする」
133 .\" というのがよく使われる。
134 .\"O .SH "SEE ALSO"
135 .SH 関連項目
136 .BR kill (2),
137 .BR sigaction (2),
138 .BR sigblock (2),
139 .BR sigprocmask (2),
140 .BR sigsuspend (2),
141 .BR sigvec (2)