Skip to content

Commit

Permalink
Add #gtPharoPatch:
Browse files Browse the repository at this point in the history
  • Loading branch information
chisandrei committed May 21, 2024
1 parent 062bd08 commit 609cd2d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/RemoteRunner/BlockClosure.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Extension { #name : #BlockClosure }

{ #category : #'*RemoteRunner' }
BlockClosure >> stonOn: aWriter [

<gtPharoPatch: #Pharo>

self printString stonOn: aWriter
]
3 changes: 2 additions & 1 deletion src/RemoteRunner/Monitor.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Extension { #name : #Monitor }

{ #category : #'*RemoteRunner' }
Monitor >> size [

<gtPharoPatch: #Pharo>

^ mutex size
]
3 changes: 2 additions & 1 deletion src/RemoteRunner/Mutex.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Mutex >> assertIsOwner [

{ #category : #'*RemoteRunner' }
Mutex >> size [

<gtPharoPatch: #Pharo>

^ semaphore size
]
2 changes: 2 additions & 0 deletions src/RemoteRunner/TKTRunningTaskState.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Extension { #name : #TKTRunningTaskState }

{ #category : #'*RemoteRunner' }
TKTRunningTaskState >> cancelTaskExecution: aTaskExecution reason: aReason [
<gtPharoPatch: #Pharo>

| cancelState activeContext timeoutContext taskProcess |

taskProcess := aTaskExecution executionProcess.
Expand Down

0 comments on commit 609cd2d

Please sign in to comment.