smalltalk
/
osmo-st-core
Archived
1
0
Fork 0

dispatcher: Run the dispatch queue with a higher priority

We want the dispatching to happen faster, change the priority
and see how things will turn out.
This commit is contained in:
Holger Hans Peter Freyther 2011-07-06 09:58:13 +02:00
parent 49c376dbf6
commit 6f2c4e98c7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ Object subclass: Dispatcher [
<category: 'private'>
quit := false.
queue := SharedQueue new.
dispatch := [[quit] whileFalse: [self dispatch]] fork.
dispatch := [[quit] whileFalse: [self dispatch]] forkAt: Processor highIOPriority.
]
dispatchBlock: aBlock [