# HG changeset patch # User Claus Gittinger # Date 1476398923 -7200 # Node ID 32fdabb21a15052affcd96cc93f2706396a31b1c # Parent 40af3b9800f30c7e57d80beb397ec648999c5e9b #DOCUMENTATION by cg class: Queue comment/format in: #documentation diff -r 40af3b9800f3 -r 32fdabb21a15 Queue.st --- a/Queue.st Fri Oct 14 00:47:40 2016 +0200 +++ b/Queue.st Fri Oct 14 00:48:43 2016 +0200 @@ -49,7 +49,7 @@ and another element is to be added. Likewise, it will report an error if it is empty and an element is to be removed. - It is NOT safe when two processes access instances of Queue simultaneously, + It is NOT safe when two processes access the same queue-instance simultaneously, since accesses to the internals are not protected against process-switches. See SharedQueue for a class which IS safe w.r.t. processes and which blocks on write when full or on read when empty.