summaryrefslogtreecommitdiffstats
path: root/Dispatcher.st
diff options
context:
space:
mode:
Diffstat (limited to 'Dispatcher.st')
-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 [