OSDN Git Service

(split) LDP: Restore and add Copyrights for draft pages
[linuxjm/LDP_man-pages.git] / draft / man2 / timer_delete.2
1 .\" Copyright (c) 2009 Linux Foundation, written by Michael Kerrisk
2 .\"     <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\"*******************************************************************
27 .\"
28 .\" This file was generated with po4a. Translate the source file.
29 .\"
30 .\"*******************************************************************
31 .\"
32 .\" Japanese Version Copyright (c) 2013  Akihiro MOTOKI
33 .\"         all rights reserved.
34 .\" Translated 2013-08-17, Akihiro MOTOKI <amotoki@gmail.com>
35 .\"
36 .TH TIMER_DELETE 2 2009\-02\-20 Linux "Linux Programmer's Manual"
37 .SH 名前
38 timer_delete \- プロセス単位の POSIX タイマーを削除する
39 .SH 書式
40 .nf
41 \fB#include <time.h>\fP
42
43 \fBint timer_delete(timer_t \fP\fItimerid\fP\fB);\fP
44 .fi
45
46 \fI\-lrt\fP でリンクする。
47 .sp
48 .in -4n
49 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
50 .in
51 .sp
52 \fBtimer_delete\fP(): _POSIX_C_SOURCE\ >=\ 199309L
53 .SH 説明
54 \fBtimer_delete\fP() は \fItimerid\fP で指定された ID のタイマーを削除する。 \fBtimer_delete\fP()
55 が呼び出された時点でタイマーが開始されている場合は、 削除する前にタイマーの解除が行われる。
56 削除されるタイマーにより生成された処理待ちシグナルの扱いは不定 (unspecified) である。
57 .SH 返り値
58 成功すると、 \fBtimer_delete\fP() は 0 を返す。 失敗すると、 \-1 が返り、 \fIerrno\fP にエラーを示す値が設定される。
59 .SH エラー
60 .TP 
61 \fBEINVAL\fP
62 \fItimerid\fP が有効なタイマー ID ではない。
63 .SH バージョン
64 このシステムコールは Linux 2.6 以降で利用できる。
65 .SH 準拠
66 POSIX.1\-2001.
67 .SH 関連項目
68 \fBclock_gettime\fP(2), \fBtimer_create\fP(2), \fBtimer_getoverrun\fP(2),
69 \fBtimer_settime\fP(2), \fBtime\fP(7)
70 .SH この文書について
71 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.53 の一部
72 である。プロジェクトの説明とバグ報告に関する情報は
73 http://www.kernel.org/doc/man\-pages/ に書かれている。