コンピューター用語辞典

日外アソシエーツ株式会社

producer-consumer problem

調べた例文を記録して、効率よく覚えましょう
Weblio会員無料で登録できます
履歴機能 過去に調べた単語を確認できる
語彙力診断 診断回数が4回に増加
マイ単語帳 便利な学習機能付き
マイ例文帳 文章で意味を理解できる

JST科学技術用語日英対訳辞書

独立行政法人科学技術振興機構

producer‐consumer problem

日英・英日専門用語辞書

日中韓辭典研究所

producer-consumer problem

ウィキペディア英語版

出典:Wikipedia

Producer-consumer problem

出典:『Wikipedia』 (2011/06/08 20:37 UTC 版)

英語による解説

ウィキペディア英語版からの引用
引用

In computer science, producer-consumer problem (also known as the bounded-buffer problem) is a classical example of a multi-process synchronization problem. The problem describes two processes, the producer and the consumer, who share a common, fixed-size buffer. The producer's job is to generate a piece of data, put it into the buffer and start again. At the same time the consumer is consuming the data (i.e., removing it from the buffer) one piece at a time. The problem is to make sure that the producer won't try to add data into the buffer if it's full and that the consumer won't try to remove data from an empty buffer.

Producer-consumer problemのページの著作権