diff --git a/documentation/current/platform-specifics/_images/WEL_cursors_example_01.png b/documentation/current/platform-specifics/_images/WEL_cursors_example_01.png new file mode 100644 index 00000000..78132a01 Binary files /dev/null and b/documentation/current/platform-specifics/_images/WEL_cursors_example_01.png differ diff --git a/documentation/current/platform-specifics/_images/WEL_cursors_example_01.png.data b/documentation/current/platform-specifics/_images/WEL_cursors_example_01.png.data new file mode 100644 index 00000000..6b5d6b8d --- /dev/null +++ b/documentation/current/platform-specifics/_images/WEL_cursors_example_01.png.data @@ -0,0 +1,3 @@ +title=cursors +author=halw +path=content/cursors diff --git a/documentation/current/solutions/concurrent-computing/concurrent-eiffel-scoop/scoop-examples/producer-consumer.wiki b/documentation/current/solutions/concurrent-computing/concurrent-eiffel-scoop/scoop-examples/producer-consumer.wiki index a3deaf59..54448ca5 100644 --- a/documentation/current/solutions/concurrent-computing/concurrent-eiffel-scoop/scoop-examples/producer-consumer.wiki +++ b/documentation/current/solutions/concurrent-computing/concurrent-eiffel-scoop/scoop-examples/producer-consumer.wiki @@ -1,6 +1,11 @@ [[Property:title|Producer-consumer]] [[Property:weight|-13]] [[Property:uuid|03739be2-e0d5-f5f0-b405-0bb75c8fee0f]] + +{{Beta}} + + + =Description= The [http://en.wikipedia.org/wiki/Producer-consumer_problem producer-consumer] problem is a classic software concurrency problem. The problem features one or more "producers" and one or more "consumers". All producers and consumers must share access to a "buffer" into which producers insert the products they produce, and from which consumers take the products they consume. The shared buffer is "bounded", that is, it has a maximum capacity.