OSDN Git Service

5308cf45ad56d82d0264a23fabcd3f59c4768c43
[linuxjm/LDP_man-pages.git] / release / man3 / sem_getvalue.3
1 .\" t
2 .\" Copyright (C) 2006 Michael Kerrisk <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 .TH SEM_GETVALUE 3 2012\-05\-13 Linux "Linux Programmer's Manual"
32 .SH 名前
33 sem_getvalue \- セマフォの値を取得する
34 .SH 書式
35 .nf
36 \fB#include <semaphore.h>\fP
37 .sp
38 \fBint sem_getvalue(sem_t *\fP\fIsem\fP\fB, int *\fP\fIsval\fP\fB);\fP
39 .fi
40 .sp
41 \fI\-pthread\fP とリンクする。
42 .SH 説明
43 \fBsem_getvalue\fP()  は、 \fIsem\fP が指すセマフォの現在の値を \fIsval\fP で指す整数に格納する。
44
45 POSIX.1\-2001 によると、 1つ以上のプロセスかスレッドが \fBsem_wait\fP(3)  でセマフォのロック待ちで停止している場合、
46 \fIsval\fP で返される値は 0 もしくは負の値のいずれかとなる。 負の値の場合、その絶対値は \fBsem_wait\fP(3)
47 で現在停止しているプロセスかスレッドの合計数に等しい。 Linux は前者の動作 (0 を返す動作) を採用している。
48 .SH 返り値
49 成功すると、 \fBsem_getvalue\fP()  は 0 を返す。エラーの場合、\-1 を返し、 \fIerrno\fP にエラーを示す値をセットする。
50 .SH エラー
51 .TP 
52 \fBEINVAL\fP
53 \fIsem\fP は有効なセマフォではない。
54 .SH 準拠
55 POSIX.1\-2001.
56 .SH 注意
57 \fBsem_getvalue\fP()  が返るときには、すでにセマフォの値は変化している可能性がある。
58 .SH 関連項目
59 \fBsem_post\fP(3), \fBsem_wait\fP(3), \fBsem_overview\fP(7)
60 .SH この文書について
61 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
62 である。プロジェクトの説明とバグ報告に関する情報は
63 http://www.kernel.org/doc/man\-pages/ に書かれている。