SemaphoreSet.st
changeset 1273 f8449f53a6a3
parent 1031 cd715f8011f0
child 1294 e26bbb61f6b2
equal deleted inserted replaced
1272:b45ddd6d6ec3 1273:f8449f53a6a3
    38 documentation
    38 documentation
    39 "
    39 "
    40     SemaphoreSets allow waiting until one of several semaphores become available.
    40     SemaphoreSets allow waiting until one of several semaphores become available.
    41     They provide a waiting protocol compatible to Semaphore, i.e. #wait and
    41     They provide a waiting protocol compatible to Semaphore, i.e. #wait and
    42     #waitWithTimeOut.
    42     #waitWithTimeOut.
       
    43 
       
    44     [see also:]
       
    45         Semaphore
       
    46         Process ProcessorScheduler
    43 "
    47 "
    44 !
    48 !
    45 
    49 
    46 examples
    50 examples
    47 "
    51 "
   269 ! !
   273 ! !
   270 
   274 
   271 !SemaphoreSet class methodsFor:'documentation'!
   275 !SemaphoreSet class methodsFor:'documentation'!
   272 
   276 
   273 version
   277 version
   274     ^ '$Header: /cvs/stx/stx/libbasic/SemaphoreSet.st,v 1.5 1996-02-28 20:34:30 cg Exp $'
   278     ^ '$Header: /cvs/stx/stx/libbasic/SemaphoreSet.st,v 1.6 1996-04-23 19:32:25 cg Exp $'
   275 ! !
   279 ! !