tail head cat sleep
QR code linking to this page

manページ  — PTHREAD_COND_DESTROY

名称

pthread_cond_destroy – 条件変数の破壊

内容

ライブラリ

Reentrant C\~Library (libc_r, -lc_r)

書式

#include <pthread.h>

int
pthread_cond_destroy(pthread_cond_t *cond);

解説

pthread_cond_destroy() 関数は、条件変数 cond によって割り当てられたリソースを解放します。

戻り値

問題がない場合は、 pthread_cond_destroy() 関数は 0 を返します。 問題がある場合は、そのエラーを示すためにエラー番号が返されます。

エラー

pthread_cond_destroy() は以下の場合に失敗します。
[EINVAL]
  cond によって指定された値が無効です。
[EBUSY]
  変数 cond が別のスレッドによってロックされています。

関連項目

pthread_cond_broadcast(3), pthread_cond_init(3), pthread_cond_signal(3), pthread_cond_timedwait(3), pthread_cond_wait(3)

規格

pthread_cond_destroy()IEEE Std 1003.1-96 ("POSIX.1") に適合しています。

PTHREAD_COND_DESTROY (3) July 28, 1998

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

The most important thing in the programming language is the name. A language will not succeed without a good name. I have recently invented a very good name and now I am looking for a suitable language.
— Donald Knuth