Semaphore.st
author Claus Gittinger <cg@exept.de>
Fri, 15 Dec 2000 17:48:21 +0100
changeset 5751 ceba525a9c2a
parent 5713 993805688c7f
child 6061 9e266783d5c2
permissions -rw-r--r--
checkin from browser
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5556
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
    13
"{ Package: 'stx:libbasic' }"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
    14
375
claus
parents: 362
diff changeset
    15
Object subclass:#Semaphore
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
    16
	instanceVariableNames:'count waitingProcesses lastOwnerID name'
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
    17
	classVariableNames:''
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
    18
	poolDictionaries:''
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
    19
	category:'Kernel-Processes'
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
    20
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
1812
a048a98aa299 kludge around a situation, where one process
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
    22
!Semaphore class methodsFor:'documentation'!
69
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
    23
88
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    24
copyright
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    25
"
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    26
 COPYRIGHT (c) 1993 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    27
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    28
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    29
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    30
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    32
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    33
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    34
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    35
"
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    36
!
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    37
69
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
    38
documentation
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
    39
"
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
    40
    Semaphores are used to synchronize processes providing a nonBusy wait
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
    41
    mechanism. A process can wait for the availability of some resource by
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
    42
    performing a Semaphore>>wait, which will suspend the process until the
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
    43
    resource becomes available. Signalling is done by (another process performing) 
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
    44
    Semaphore>>signal.
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    45
    If the resource has been already available before the wait, no suspending is
69
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
    46
    done, but the resource immediately allocated.
2234
21fe6c17fe8d commentary
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
    47
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
    48
    There are also semaphores for mutual access to a critical region
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
    49
    (Semaphore>>forMutualExclusion and Semaphore>>critical:).
88
81dacba7a63a *** empty log message ***
claus
parents: 79
diff changeset
    50
2234
21fe6c17fe8d commentary
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
    51
    Additional protocol is provided for oneShot semaphores, 
21fe6c17fe8d commentary
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
    52
    (#signalOnce) and for conditional signalling (#signalIf).
21fe6c17fe8d commentary
Claus Gittinger <cg@exept.de>
parents: 2142
diff changeset
    53
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    54
    You can also attach semaphores to external events (such as I/O arrival or
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
    55
    timer events). 
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
    56
    This is done by telling the Processor to signal the semaphore 
183
7899f380e77d signalIf
claus
parents: 159
diff changeset
    57
    under some condition.
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    58
    See 'Processor>>signal:afterSeconds:', 'Processor>>signal:onInput:' etc.
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    59
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
    60
    See examples in doc/coding (found in the CodingExamples-nameSpace).
1273
f8449f53a6a3 commentary
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    61
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    62
    Warning/Note/Hint:
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    63
        a Semaphore-forMutualExclusion does NEVER allow for the critical
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    64
        region to be entered twice - NOT EVEN by the same process.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    65
        That means, that a recursive attempt to enter that section leads
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    66
        to a deadlock.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    67
        Use a RecursionLock instead of a semaphore to avoid this.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    68
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
    69
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    70
    [instance variables:]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    71
        count                   <SmallInteger>          the number of waits, that will go through
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    72
                                                        without blocking.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    73
                                                        Incremented on #signal; decremented on #wait.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
    74
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    75
        waitingProcesses        <OrderedCollection>     waiting processes - will be served first
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    76
                                                        come first served when signalled.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
    77
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    78
        lastOwnerID             <SmallInteger>          a debugging aid: set when count drops
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    79
                                                        to zero to the current processes id.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    80
                                                        Helps in finding deadlocks.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    81
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    82
        name                    <String>                a debugging aid: an optional userFriendly
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    83
                                                        name; helps to identify a semaphore easier.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
    84
1273
f8449f53a6a3 commentary
Claus Gittinger <cg@exept.de>
parents: 1185
diff changeset
    85
    [see also:]
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    86
        SemaphoreSet RecursionLock Monitor
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    87
        SharedQueue Delay 
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    88
        Process ProcessorScheduler
1294
e26bbb61f6b2 documentation
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
    89
e26bbb61f6b2 documentation
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
    90
    [author:]
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    91
        Claus Gittinger
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
    92
"
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
    93
!
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
    94
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
    95
examples
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
    96
"
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
    97
    two processes synchronizing on a sema:
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    98
                                                        [exBegin]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
    99
        |sema thread1 thread2|
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   100
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   101
        sema := Semaphore new.
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   102
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   103
        thread1 := [
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   104
                        Transcript showCR:'here is thread 1; now waiting ...'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   105
                        sema wait.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   106
                        Transcript showCR:'here is thread 1 again.'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   107
                   ] newProcess.
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   108
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   109
        thread2 := [
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   110
                        Transcript showCR:'here is thread 2; delaying a bit ...'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   111
                        Delay waitForSeconds:5.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   112
                        Transcript showCR:'here is thread 2 again; now signalling the sema'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   113
                        sema signal.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   114
                        Transcript showCR:'here is thread 2 after the signalling.'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   115
                  ] newProcess.
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   116
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   117
        thread1 priority:7.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   118
        thread2 priority:6.
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   119
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   120
        thread1 resume.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   121
        thread2 resume.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   122
                                                        [exEnd]
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   123
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   124
    semaphore for critical regions:
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   125
                                                        [exBegin]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   126
        |accessLock|
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   127
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   128
        accessLock := Semaphore forMutualExclusion.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   129
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   130
        [
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   131
            5 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   132
                Delay waitForSeconds:2.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   133
                accessLock critical:[
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   134
                    Transcript showCR:'thread1 in critical region'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   135
                    Delay waitForSeconds:1.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   136
                    Transcript showCR:'thread1 leaving critical region'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   137
                ].
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   138
            ]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   139
        ] forkAt:5.
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   140
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   141
        [
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   142
            5 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   143
                Delay waitForSeconds:1.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   144
                accessLock critical:[
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   145
                    Transcript showCR:'thread2 in critical region'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   146
                    Delay waitForSeconds:2.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   147
                    Transcript showCR:'thread2 leaving critical region'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   148
                ].
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   149
            ]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   150
        ] forkAt:4.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   151
                                                        [exEnd]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   152
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   153
    a deadlock due to recursive enter of a critical region:
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   154
                                                        [exBegin]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   155
        |accessLock block|
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   156
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   157
        accessLock := Semaphore forMutualExclusion.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   158
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   159
        block := [:arg |
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   160
                    Transcript showCR:'about to enter'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   161
                    accessLock critical:[
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   162
                        Transcript showCR:'entered - doing action'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   163
                        arg value
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   164
                    ].
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   165
                    Transcript showCR:'left region'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   166
                 ].
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   167
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   168
        block value:[].                 'this works'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   169
        block value:[block value:[] ].  'this deadlocks'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   170
                                                        [exEnd]
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   171
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   172
    Avoid the deadlock by using a RecursionLock instead:
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   173
                                                        [exBegin]
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   174
        |accessLock block|
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   175
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   176
        accessLock := RecursionLock new.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   177
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   178
        block := [:arg |
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   179
                    Transcript showCR:'about to enter'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   180
                    accessLock critical:[
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   181
                        Transcript showCR:'entered - doing action'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   182
                        arg value
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   183
                    ].
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   184
                    Transcript showCR:'left region'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   185
                 ].
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   186
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   187
        block value:[].                 'this works'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   188
        block value:[block value:[] ].  'this deadlocks'.
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   189
                                                        [exEnd]
69
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
   190
"
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
   191
! !
4564b6328136 *** empty log message ***
claus
parents: 25
diff changeset
   192
1812
a048a98aa299 kludge around a situation, where one process
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   193
!Semaphore class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   194
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   195
forMutualExclusion
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   196
    "create & return a new semaphore which allows exactly one process to
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   197
     wait on it without blocking. This type of semaphore is used
4437
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   198
     for mutual exclusion from critical regions (see #critical:).
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   199
     Also see RecursionLock, to avoid deadlock in case of recursive entered
Claus Gittinger <cg@exept.de>
parents: 3836
diff changeset
   200
     critical regions."
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   201
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   202
    ^ super new setCount:1; name:'criticalRegionSema'
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   203
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   204
    "Modified: / 17.6.1998 / 16:23:09 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   205
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   206
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   207
new
a27a279701f8 Initial revision
claus
parents:
diff changeset
   208
    "create & return a new semaphore which blocks until a signal is sent"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   209
a27a279701f8 Initial revision
claus
parents:
diff changeset
   210
    ^ super new setCount:0
a27a279701f8 Initial revision
claus
parents:
diff changeset
   211
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   212
a27a279701f8 Initial revision
claus
parents:
diff changeset
   213
new:n
a27a279701f8 Initial revision
claus
parents:
diff changeset
   214
    "create & return a new semaphore which allows n waits before
a27a279701f8 Initial revision
claus
parents:
diff changeset
   215
     blocking"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   216
a27a279701f8 Initial revision
claus
parents:
diff changeset
   217
    ^ super new setCount:n
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   218
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   219
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   220
!Semaphore methodsFor:'friend-class interface'!
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   221
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   222
checkAndRegisterProcess:process
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   223
    "interface for SemaphoreSet.
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   224
     If the semaphore is available, decrement it and return true.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   225
     Otherwise register our process to be wakened up once the semaphore is available
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   226
     and return false..
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   227
    "
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   228
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   229
    "
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   230
     bad ST/X trick (needs change, when multiProcessor support is added):
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   231
     this works only since interrupts are only serviced at 
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   232
     message send and method-return time ....
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   233
     If you add a message send into the ifTrue:-block, things will
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   234
     go mad ... (especially be careful when adding a debugPrint-here)
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   235
    "
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   236
    count ~~ 0 ifTrue:[
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   237
	count := count - 1.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   238
	count == 0 ifTrue:[
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   239
	    lastOwnerID := Processor activeProcessId.
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   240
	].
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   241
	^ true
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   242
    ].
1122
251ea6ec6c61 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1031
diff changeset
   243
    (waitingProcesses identityIndexOf:process) == 0 ifTrue:[
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   244
	waitingProcesses add:process.
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   245
    ].
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   246
    ^ false
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   247
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   248
    "Modified: 14.12.1995 / 10:32:17 / stefan"
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   249
    "Modified: 10.1.1997 / 21:42:18 / cg"
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   250
!
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   251
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   252
unregisterProcess:process
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   253
    "interface for SemaphoreSet.
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   254
     Unregister our process from the Semaphore"
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   255
2352
9588e545f4a5 use #removeIdentical
Claus Gittinger <cg@exept.de>
parents: 2265
diff changeset
   256
    waitingProcesses removeIdentical:process ifAbsent:[].
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   257
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   258
    "Created: 14.12.1995 / 10:31:50 / stefan"
2352
9588e545f4a5 use #removeIdentical
Claus Gittinger <cg@exept.de>
parents: 2265
diff changeset
   259
    "Modified: 1.2.1997 / 12:11:22 / cg"
757
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   260
! !
93d5f6b86e98 Add SemaphoreSet.
Stefan Vogel <sv@exept.de>
parents: 752
diff changeset
   261
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   262
!Semaphore methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   263
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   264
displayString
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   265
    "return a string to display the receiver - include the
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   266
     count for your convenience"
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   267
2723
0d4c775c14d1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   268
    ^ self class name , '(' , count printString , ' name: ' , (name ? 'unnamed') , ')'
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   269
2723
0d4c775c14d1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2690
diff changeset
   270
    "Modified: 28.6.1997 / 16:21:09 / cg"
2265
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   271
!
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   272
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   273
name
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   274
    "return the semaphores userFriendly name"
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   275
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   276
    ^ name
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   277
!
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   278
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   279
name:aString
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   280
    "set the semaphores userFriendly name"
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   281
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   282
    name := aString
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   283
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   284
a27a279701f8 Initial revision
claus
parents:
diff changeset
   285
!Semaphore methodsFor:'private accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   286
2407
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   287
initSignals
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   288
    "set the count of the semaphore to zero.
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   289
     provided for ST-80 compatibility."
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   290
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   291
    count := 0
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   292
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   293
    "Created: 17.2.1997 / 11:31:19 / cg"
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   294
!
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   295
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   296
setCount:n
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   297
    "set the count of the semaphore;
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   298
     thats the number of possible waits, without blocking"
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   299
2407
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   300
    waitingProcesses := OrderedCollection new:2.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   301
    count := n
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   302
2407
6b0e21391915 added #initSignals for ST-80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   303
    "Modified: 17.2.1997 / 11:36:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   304
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   305
5256
1209e167d63e category rename
Claus Gittinger <cg@exept.de>
parents: 4902
diff changeset
   306
!Semaphore methodsFor:'queries'!
217
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   307
2235
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   308
count
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   309
    "return the number of 'already-counted' trigger events.
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   310
     Thats the number of waits which will succeed without blocking"
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   311
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   312
    ^ count
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   313
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   314
    "Created: 23.1.1997 / 02:55:58 / cg"
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   315
!
c6a15bd9a33c added access to count
Claus Gittinger <cg@exept.de>
parents: 2234
diff changeset
   316
2265
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   317
lastOwnerId
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   318
    "return the processId of the last owning process
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   319
     (the one which counted to zero).
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   320
     May be very useful in debugging deadLock situations"
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   321
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   322
    ^ lastOwnerID
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   323
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   324
    "Created: 24.1.1997 / 23:09:33 / cg"
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   325
!
775feb718a9d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2262
diff changeset
   326
1329
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   327
numberOfWaitingProcesses
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   328
    "return the number of processes waiting on the receiver"
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   329
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   330
    ^ waitingProcesses size
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   331
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   332
    "Created: 3.5.1996 / 18:06:27 / cg"
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   333
!
0a025ca40653 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
   334
1577
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   335
waitingProcesses
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   336
    "return the processes waiting on the receiver"
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   337
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   338
    ^ waitingProcesses
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   339
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   340
    "Created: 18.7.1996 / 20:53:33 / cg"
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   341
!
720f14f90e2c access to waitingProcesses added
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   342
217
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   343
wouldBlock
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   344
    "return true, if the receiver would block the activeProcess
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   345
     if a wait was performed. False otherwise."
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   346
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   347
    ^ count == 0
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   348
! !
a0400fdbc933 *** empty log message ***
claus
parents: 183
diff changeset
   349
5556
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   350
!Semaphore methodsFor:'testing'!
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   351
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   352
isEmpty
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   353
    "ST80 compatibility - return true if there are no waiters"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   354
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   355
    ^ waitingProcesses isEmpty
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   356
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   357
    "Created: / 3.5.1996 / 18:06:27 / cg"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   358
    "Modified: / 18.6.1998 / 16:07:38 / cg"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   359
! !
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   360
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   361
!Semaphore methodsFor:'wait & signal'!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   362
5713
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   363
clear
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   364
    "clear the semaphores count"
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   365
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   366
    count := 0
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   367
!
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   368
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   369
critical:aBlock
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   370
    "evaluate aBlock as a critical region; the receiver must be
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   371
     created using Semaphore>>forMutualExclusion"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   372
1185
2b24258b4f24 Fix in critical: don't signal a semaphore that we didn't get when unwinding.
Stefan Vogel <sv@exept.de>
parents: 1122
diff changeset
   373
    |retVal gotSema|
926
101239898989 unwind block over wait (in critical)
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   374
101239898989 unwind block over wait (in critical)
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   375
    [
3669
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   376
        gotSema := self wait.
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   377
        retVal := aBlock value.
1185
2b24258b4f24 Fix in critical: don't signal a semaphore that we didn't get when unwinding.
Stefan Vogel <sv@exept.de>
parents: 1122
diff changeset
   378
    ] valueOnUnwindDo:[
3669
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   379
        "/ be careful - the unwind may occur both while waiting
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   380
        "/ AND while evaluating the block.
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   381
        gotSema notNil ifTrue:[self signal].
1185
2b24258b4f24 Fix in critical: don't signal a semaphore that we didn't get when unwinding.
Stefan Vogel <sv@exept.de>
parents: 1122
diff changeset
   382
    ].
2b24258b4f24 Fix in critical: don't signal a semaphore that we didn't get when unwinding.
Stefan Vogel <sv@exept.de>
parents: 1122
diff changeset
   383
    self signal.
926
101239898989 unwind block over wait (in critical)
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   384
    ^ retVal
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   385
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   386
    "
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   387
      the example below is stupid (it should use a SharedQueue,
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   388
      or at least a Queue with critical regions).
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   389
      Anyhow, it demonstrates how two processes lock each other
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   390
      from accessing coll at the same time
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   391
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   392
     |sema coll|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   393
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   394
     sema := Semaphore forMutualExclusion.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   395
     coll := OrderedCollection new:10.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   396
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   397
     [
3669
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   398
        1 to:1000 do:[:i |
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   399
            sema critical:[
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   400
                coll addLast:i.
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   401
                (Delay forSeconds:0.1) wait.
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   402
            ]
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   403
        ]
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   404
     ] forkAt:4.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   405
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   406
     [
3669
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   407
        1 to:1000 do:[:i |
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   408
            sema critical:[
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   409
                coll removeFirst.
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   410
                (Delay forSeconds:0.1) wait.
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   411
            ]
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   412
        ]
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   413
     ] forkAt:4.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   414
    "
1185
2b24258b4f24 Fix in critical: don't signal a semaphore that we didn't get when unwinding.
Stefan Vogel <sv@exept.de>
parents: 1122
diff changeset
   415
3669
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   416
    "Modified: / 16.4.1996 / 10:00:46 / stefan"
59baacaab0a8 comment
Claus Gittinger <cg@exept.de>
parents: 3609
diff changeset
   417
    "Modified: / 21.7.1998 / 17:45:26 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   418
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   419
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   420
signal
4633
b6908af8f900 comment
Claus Gittinger <cg@exept.de>
parents: 4437
diff changeset
   421
    "waking up (the first) waiter.
b6908af8f900 comment
Claus Gittinger <cg@exept.de>
parents: 4437
diff changeset
   422
     Q: should this be the highest prio waiter ?"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   423
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   424
    |wasBlocked|
362
claus
parents: 329
diff changeset
   425
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   426
    wasBlocked := OperatingSystem blockInterrupts.
1031
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   427
    [
3836
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   428
        |p|
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   429
3836
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   430
        count := count + 1.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   431
        p := waitingProcesses removeFirstIfAbsent:nil.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   432
        p notNil ifTrue:[
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   433
            Processor resume:p.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   434
        ].
1031
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   435
    ] valueNowOrOnUnwindDo:[
3836
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   436
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
1031
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   437
    ]
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   438
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   439
    "Modified: / 4.2.1998 / 21:01:07 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   440
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   441
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   442
signalForAll
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   443
    "signal the semaphore for all waiters.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   444
     This can be used for process synchronization, if multiple processes are
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   445
     waiting for a common event."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   446
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   447
    |wasBlocked|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   448
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   449
    waitingProcesses notEmpty ifTrue:[
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   450
	wasBlocked := OperatingSystem blockInterrupts.
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   451
	[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   452
	    |p|
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   453
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   454
	    "/ first, make them all runnable, but do not schedule
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   455
	    "/ (in case one has higher prio and goes into a wait
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   456
	    "/  immediately again.)
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   457
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   458
	    [waitingProcesses notEmpty] whileTrue:[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   459
		p := waitingProcesses removeFirst.
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   460
		count := count + 1.
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   461
		Processor makeRunnable:p.
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   462
	    ].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   463
	] valueNowOrOnUnwindDo:[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   464
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   465
	].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   466
	"/
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   467
	"/ now, reschedule
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   468
	"/
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   469
	Processor reschedule
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   470
    ]
1031
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   471
3272
3e35f761be17 when signalling multiple process, make ALL of them FIRST runnable
Claus Gittinger <cg@exept.de>
parents: 2723
diff changeset
   472
    "Modified: / 5.2.1998 / 10:40:26 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   473
!
362
claus
parents: 329
diff changeset
   474
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   475
signalIf
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   476
    "signal the semaphore, but only if being waited upon.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   477
     This can be used for one-shot semaphores (i.e. not remembering
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   478
     previous signals)"
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   479
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   480
    |wasBlocked|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   481
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   482
    waitingProcesses notEmpty ifTrue:[
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   483
	wasBlocked := OperatingSystem blockInterrupts.
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   484
	[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   485
	    waitingProcesses notEmpty ifTrue:[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   486
		self signal
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   487
	    ].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   488
	] valueNowOrOnUnwindDo:[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   489
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   490
	]
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   491
    ]
1031
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   492
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   493
    "Modified: 28.2.1996 / 21:23:57 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   494
!
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   495
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   496
signalOnce
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   497
    "wakeup waiters - but only once.
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   498
     I.e. if the semaphore has already been signalled, this
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   499
     is ignored."
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   500
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   501
    |wasBlocked|
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   502
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   503
    count == 0 ifTrue:[
3836
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   504
        wasBlocked := OperatingSystem blockInterrupts.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   505
        [
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   506
            |p|
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   507
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   508
            count == 0 ifTrue:[
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   509
                count := 1.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   510
                p := waitingProcesses removeFirstIfAbsent:nil.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   511
                p notNil ifTrue:[
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   512
                    Processor resume:p.
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   513
                ].
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   514
            ].
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   515
        ] valueNowOrOnUnwindDo:[
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   516
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
318f7d6f242b avoid two more sends in signal / signalOnce
Claus Gittinger <cg@exept.de>
parents: 3669
diff changeset
   517
        ]
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   518
    ]
1031
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   519
cd715f8011f0 care to reenable interrupts
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   520
    "Modified: 28.2.1996 / 21:24:08 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   521
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   522
a27a279701f8 Initial revision
claus
parents:
diff changeset
   523
wait
a27a279701f8 Initial revision
claus
parents:
diff changeset
   524
    "wait for the semaphore"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   525
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   526
    |activeProcess wasBlocked|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   527
a27a279701f8 Initial revision
claus
parents:
diff changeset
   528
    "
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   529
     bad ST/X trick (needs change, when multiProcessor support is added):
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   530
     this works only since interrupts are only serviced at 
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   531
     message send and method-return time ....
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   532
     If you add a message send between the compare and the decrement,
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   533
     things will go mad ... (especially be careful when adding a debugPrint-here)
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   534
    "
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   535
    count ~~ 0 ifTrue:[
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   536
        count := count - 1.
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   537
        count == 0 ifTrue:[
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   538
            lastOwnerID := Processor activeProcessId.
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   539
        ].
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   540
        ^ self
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   541
    ].
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   542
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   543
    activeProcess := Processor activeProcess.
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   544
302
1f76060d58a4 *** empty log message ***
claus
parents: 269
diff changeset
   545
    wasBlocked := OperatingSystem blockInterrupts.
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   546
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   547
     need a while-loop here, since more than one process may
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   548
     wait for it and another one may also wake up.
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   549
     Thus, the count is not always non-zero after returning from
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   550
     suspend.
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   551
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   552
    [count == 0] whileTrue:[
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   553
        waitingProcesses add:activeProcess.
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   554
        "
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   555
         for some more descriptive info in processMonitor ...
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   556
         ... set the state to #wait (instead of #suspend)
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   557
        "
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   558
        [
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   559
            activeProcess suspendWithState:#wait
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   560
        ] valueOnUnwindDo:[
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   561
            waitingProcesses removeIdentical:activeProcess ifAbsent:[].
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   562
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   563
        ].
1812
a048a98aa299 kludge around a situation, where one process
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   564
        
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   565
        count == 0 ifTrue:[
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   566
            "/ care for someone manually resuming me ...
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   567
            "/ being multiple times on waitingProcesses
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   568
            waitingProcesses removeIdentical:activeProcess ifAbsent:[].
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   569
        ]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   570
    ].
10
claus
parents: 3
diff changeset
   571
    count := count - 1.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   572
    count == 0 ifTrue:[
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   573
        lastOwnerID := Processor activeProcessId.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   574
    ].
93
e31220cb391f *** empty log message ***
claus
parents: 88
diff changeset
   575
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
752
0259dd855289 new suspendAction, Semaphore & ProcSched stuff from stefan
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   576
3600
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   577
    "Modified: / 13.12.1995 / 13:26:33 / stefan"
6c5629eea51d give mutual-exclusion semas a distinct default name
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   578
    "Modified: / 17.6.1998 / 15:26:27 / cg"
10
claus
parents: 3
diff changeset
   579
!
claus
parents: 3
diff changeset
   580
329
claus
parents: 302
diff changeset
   581
waitUncounted
claus
parents: 302
diff changeset
   582
    "wait for the semaphore; do not consume the resource
claus
parents: 302
diff changeset
   583
     (i.e. do not count down)"
claus
parents: 302
diff changeset
   584
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   585
    |activeProcess wasBlocked|
329
claus
parents: 302
diff changeset
   586
claus
parents: 302
diff changeset
   587
    "
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   588
     bad ST/X trick (needs change, when multiProcessor support is added):
329
claus
parents: 302
diff changeset
   589
     this works only since interrupts are only serviced at 
claus
parents: 302
diff changeset
   590
     message send and method-return time ....
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   591
     If you add a message send between the compare and the decrement,
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   592
     things will go mad ... (especially be careful when adding a debugPrint-here)
329
claus
parents: 302
diff changeset
   593
    "
claus
parents: 302
diff changeset
   594
    count ~~ 0 ifTrue:[
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   595
	^ self
329
claus
parents: 302
diff changeset
   596
    ].
claus
parents: 302
diff changeset
   597
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   598
    activeProcess := Processor activeProcess.
329
claus
parents: 302
diff changeset
   599
claus
parents: 302
diff changeset
   600
    wasBlocked := OperatingSystem blockInterrupts.
claus
parents: 302
diff changeset
   601
    "
claus
parents: 302
diff changeset
   602
     need a while-loop here, since more than one process may
claus
parents: 302
diff changeset
   603
     wait for it and another one may also wake up.
claus
parents: 302
diff changeset
   604
     Thus, the count is not always non-zero after returning from
claus
parents: 302
diff changeset
   605
     suspend.
claus
parents: 302
diff changeset
   606
    "
claus
parents: 302
diff changeset
   607
    [count == 0] whileTrue:[
3392
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   608
	waitingProcesses add:activeProcess.
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   609
	"
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   610
	 for some more descriptive info in processMonitor ...
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   611
	 ... set the state to #wait (instead of #suspend)
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   612
	"
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   613
	[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   614
	    activeProcess suspendWithState:#wait
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   615
	] valueOnUnwindDo:[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   616
	    waitingProcesses removeIdentical:activeProcess ifAbsent:[].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   617
	    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   618
	].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   619
	count == 0 ifTrue:[
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   620
	    "/ care for someone manually resuming me ...
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   621
	    "/ being multiple times on waitingProcesses
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   622
	    waitingProcesses removeIdentical:activeProcess ifAbsent:[].
84332bb01a86 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3272
diff changeset
   623
	]
329
claus
parents: 302
diff changeset
   624
    ].
claus
parents: 302
diff changeset
   625
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
752
0259dd855289 new suspendAction, Semaphore & ProcSched stuff from stefan
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   626
0259dd855289 new suspendAction, Semaphore & ProcSched stuff from stefan
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   627
    "Modified: 13.12.1995 / 13:26:49 / stefan"
2352
9588e545f4a5 use #removeIdentical
Claus Gittinger <cg@exept.de>
parents: 2265
diff changeset
   628
    "Modified: 1.2.1997 / 12:11:41 / cg"
329
claus
parents: 302
diff changeset
   629
!
claus
parents: 302
diff changeset
   630
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   631
waitWithTimeout:seconds
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   632
    "wait for the semaphore, but abort the wait after some time.
2690
f79d685e06af checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2407
diff changeset
   633
     return the receiver if the semaphore triggered normal, nil if we return
926
101239898989 unwind block over wait (in critical)
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   634
     due to a timeout. 
101239898989 unwind block over wait (in critical)
Claus Gittinger <cg@exept.de>
parents: 770
diff changeset
   635
     The seconds-argument may be a float (i.e. use 0.1 for a 100ms timeout).
2690
f79d685e06af checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2407
diff changeset
   636
     With zero timeout, this can be used to poll a semaphore (returning
f79d685e06af checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2407
diff changeset
   637
     the receiver if the semaphore is available, nil if not).
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   638
     However, polling is not the intended use of semaphores, though.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   639
     If seconds is nil, wait without timeout."
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   640
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   641
    |activeProcess timeoutOccured wasBlocked unblock now endTime|
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   642
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   643
    "
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   644
     bad ST/X trick (needs change, when multiProcessor support is added):
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   645
     this works only since interrupts are only serviced at 
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   646
     message send and method-return time ....
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   647
     If you add a message send between the compare and the decrement,
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   648
     things will go mad ... (especially be careful when adding a debugPrint-here)
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   649
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   650
    count ~~ 0 ifTrue:[
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   651
        count := count - 1.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   652
        count == 0 ifTrue:[
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   653
            lastOwnerID := Processor activeProcessId.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   654
        ].
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   655
        ^ self
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   656
    ].
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   657
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   658
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   659
     with zero-timeout, this is a poll
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   660
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   661
    seconds = 0 ifTrue:[
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   662
        ^ nil
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   663
    ].
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   664
2142
d4a21668c699 commentary
Claus Gittinger <cg@exept.de>
parents: 1812
diff changeset
   665
    activeProcess := Processor activeProcess.
302
1f76060d58a4 *** empty log message ***
claus
parents: 269
diff changeset
   666
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   667
    wasBlocked := OperatingSystem blockInterrupts.
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   668
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   669
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   670
     calculate the end-time
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   671
    "
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   672
    seconds notNil ifTrue:[
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   673
        now := OperatingSystem getMillisecondTime.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   674
        endTime := OperatingSystem millisecondTimeAdd:now and:(seconds * 1000).
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   675
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   676
        unblock := [timeoutOccured := true. Processor resume:activeProcess].
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   677
        Processor addTimedBlock:unblock for:activeProcess atMilliseconds:endTime.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   678
    ].
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   679
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   680
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   681
     need a while-loop here, since more than one process may
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   682
     wait for it and another one may also wake up.
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   683
     Thus, the count is not always non-zero after returning from
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   684
     suspend.
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   685
    "
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   686
    [count == 0] whileTrue:[
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   687
        waitingProcesses add:activeProcess.
302
1f76060d58a4 *** empty log message ***
claus
parents: 269
diff changeset
   688
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   689
        timeoutOccured := false.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   690
        "
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   691
         for some more descriptive info in processMonitor ...
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   692
         ... set the state to #wait (instead of #suspend)
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   693
        "
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   694
        [
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   695
            activeProcess suspendWithState:#wait.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   696
        ] valueOnUnwindDo:[
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   697
            unblock := nil.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   698
            waitingProcesses removeIdentical:activeProcess ifAbsent:[].
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   699
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   700
        ].
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   701
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   702
        waitingProcesses removeIdentical:activeProcess ifAbsent:[].
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   703
        timeoutOccured ifTrue:[
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   704
            wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   705
            unblock := nil.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   706
            ^ nil
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   707
        ].
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   708
    ].
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   709
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   710
    unblock notNil ifTrue:[
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   711
        Processor removeTimedBlock:unblock.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   712
        unblock := nil.
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   713
    ].
2690
f79d685e06af checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2407
diff changeset
   714
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   715
    count := count - 1.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   716
    count == 0 ifTrue:[
4902
caf73c9821c5 Allow nil as argument to #waitWithTimeout: (no timeout) (stefan)
Claus Gittinger <cg@exept.de>
parents: 4633
diff changeset
   717
        lastOwnerID := Processor activeProcessId.
2262
4c4d810f006f semaphore names
Claus Gittinger <cg@exept.de>
parents: 2235
diff changeset
   718
    ].
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
   719
    wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
770
402958905760 protocol of waitWithTImeOut: changed
Claus Gittinger <cg@exept.de>
parents: 769
diff changeset
   720
    ^ self
752
0259dd855289 new suspendAction, Semaphore & ProcSched stuff from stefan
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   721
0259dd855289 new suspendAction, Semaphore & ProcSched stuff from stefan
Claus Gittinger <cg@exept.de>
parents: 699
diff changeset
   722
    "Modified: 13.12.1995 / 13:27:24 / stefan"
2690
f79d685e06af checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2407
diff changeset
   723
    "Modified: 16.6.1997 / 21:54:38 / cg"
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   724
! !
77
6c38ca59927f *** empty log message ***
claus
parents: 69
diff changeset
   725
1812
a048a98aa299 kludge around a situation, where one process
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   726
!Semaphore class methodsFor:'documentation'!
183
7899f380e77d signalIf
claus
parents: 159
diff changeset
   727
699
12f456343eea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 560
diff changeset
   728
version
5713
993805688c7f added #clear
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   729
    ^ '$Header: /cvs/stx/stx/libbasic/Semaphore.st,v 1.59 2000-11-16 11:16:59 cg Exp $'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   730
! !