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