home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / gnusmalltalk / semaphore.st < prev    next >
Text File  |  1992-02-15  |  2KB  |  89 lines

  1. "======================================================================
  2. |
  3. |   Semaphore Method Definitions
  4. |
  5.  ======================================================================"
  6.  
  7.  
  8. "======================================================================
  9. |
  10. | Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
  11. | Written by Steve Byrne.
  12. |
  13. | This file is part of GNU Smalltalk.
  14. |
  15. | GNU Smalltalk is free software; you can redistribute it and/or modify it
  16. | under the terms of the GNU General Public License as published by the Free
  17. | Software Foundation; either version 1, or (at your option) any later version.
  18. | GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  19. | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  20. | FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  21. | details.
  22. | You should have received a copy of the GNU General Public License along with
  23. | GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  24. | Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  25. |
  26.  ======================================================================"
  27.  
  28.  
  29. "
  30. |     Change Log
  31. | ============================================================================
  32. | Author       Date       Change 
  33. | sbb         16 Mar 91      Class creation now separate statement.
  34. |
  35. | sbyrne     19 Sep 89      Converted to use real method categories.
  36. |
  37. | sbyrne     25 Apr 89      created.
  38. |
  39. "
  40.  
  41. LinkedList subclass: #Semaphore
  42.        instanceVariableNames: 'signals'
  43.        classVariableNames: ''
  44.        poolDictionaries: ''
  45.        category: nil
  46. !
  47.  
  48. Semaphore comment: 
  49. 'My instances represent counting semaphores.  I provide methods for signalling
  50. the semaphore''s availability, and methods for waiting for its availability.
  51. I also provide some methods for implementing critical sections.  I currently
  52. do not (because the underlying system does not) support asynchronous
  53. signals, such as might be generated by C signals.' !
  54.  
  55. !Semaphore class methodsFor: 'instance creation'!
  56.  
  57. new
  58.     ^self basicNew initSemaphore
  59. !
  60.  
  61. forMutualExclusion
  62.     | sem |
  63.     sem _ self new.
  64.     sem signal.
  65.     ^sem
  66. !!
  67.  
  68.  
  69.  
  70. !Semaphore methodsFor: 'mutual exclusion'!
  71.  
  72. critical: aBlock
  73.     | result |
  74.     self wait.
  75.     result _ aBlock value.
  76.     self signal.
  77.     ^result
  78. !!
  79.  
  80.  
  81.  
  82. !Semaphore methodsFor: 'private'!
  83.  
  84. initSemaphore
  85.     signals _ 0
  86. !!
  87.