summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-07-06 09:58:13 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-07-06 09:58:13 +0200
commit6f2c4e98c734221010b3d4049ba826775d87a5fc (patch)
treeb5ba5fa012dd9c43a02e9f898c0a99619413df59
parent49c376dbf60738448b0c925865d37042d96ebefd (diff)
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.
-rw-r--r--Dispatcher.st2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dispatcher.st b/Dispatcher.st
index 7f7746d..297e1bd 100644
--- a/Dispatcher.st
+++ b/Dispatcher.st
@@ -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 [