Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
initial poolSize downsized to 5 (it does not seems very probable more…
Browse files Browse the repository at this point in the history
…, and it will grow anyway)
  • Loading branch information
estebanlm committed Nov 6, 2019
1 parent a36c3a7 commit 4221aed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/ThreadedFFI/TFPool.class.st
Expand Up @@ -79,6 +79,13 @@ TFPool >> populate: anArray [
^ anArray
]

{ #category : #printing }
TFPool >> printOn: stream [

super printOn: stream.
stream << '(' << self size printString << ' elements)'
]

{ #category : #accessing }
TFPool >> returnOne: anObject [

Expand Down
2 changes: 1 addition & 1 deletion src/ThreadedFFI/TFRunner.class.st
Expand Up @@ -185,5 +185,5 @@ TFRunner >> semaphorePool [
{ #category : #accessing }
TFRunner >> semaphorePoolSize [

^ 10
^ 5
]

0 comments on commit 4221aed

Please sign in to comment.