OSDN Git Service

(split) LDP: Release pages for LDP v3.39.
[linuxjm/LDP_man-pages.git] / release / man3 / sem_destroy.3
1 .\" t
2 .\" Hey Emacs! This file is -*- nroff -*- source.
3 .\"
4 .\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
5 .\"
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\"
26 .\"*******************************************************************
27 .\"
28 .\" This file was generated with po4a. Translate the source file.
29 .\"
30 .\"*******************************************************************
31 .TH SEM_DESTROY 3 2006\-03\-25 Linux "Linux Programmer's Manual"
32 .SH 名前
33 sem_destroy \- 名前なしセマフォを破棄する
34 .SH 書式
35 .nf
36 \fB#include <semaphore.h>\fP
37 .sp
38 \fBint sem_destroy(sem_t *\fP\fIsem\fP\fB);\fP
39 .fi
40 .sp
41 \fI\-lrt\fP または \fI\-pthread\fP でリンクする。
42 .SH 説明
43 \fBsem_destroy\fP()  は \fIsem\fP が指すアドレスにある名前なしセマフォを破棄する。
44
45 \fBsem_destroy\fP()  を使って破棄するのは、 \fBsem_init\fP(3)  で初期化したセマフォだけにすべきである。
46
47 他のプロセスやスレッドが (\fBsem_wait\fP(3)  で) 待ち状態になっているセマフォを破棄した場合の挙動は定義されていない。
48
49 すでに破棄されたセマフォを、 \fBsem_init\fP(3)  を使って再初期化される前に使用した場合、その結果は未定義である。
50 .SH 返り値
51 成功すると、 \fBsem_destroy\fP()  は 0 を返す。エラーの場合、\-1 を返し、 \fIerrno\fP にエラーを示す値をセットする。
52 .SH エラー
53 .TP 
54 \fBEINVAL\fP
55 \fIsem\fP は有効なセマフォではない。
56 .SH 準拠
57 POSIX.1\-2001.
58 .SH 注意
59 .\" But not on NPTL, where sem_destroy () is a no-op..
60 名前なしセマフォは、そのセマフォが置かれているメモリが解放される前に、 \fBsem_destroy\fP()
61 を使って破棄しておくべきである。これを行わなかった場合、実装によっては リソースのリークが起こりえる。
62 .SH 関連項目
63 \fBsem_init\fP(3), \fBsem_post\fP(3), \fBsem_wait\fP(3), \fBsem_overview\fP(7)