openstream fixes, changes to compiling of pde files

This commit is contained in:
benfry
2004-07-17 01:14:24 +00:00
parent 96f1fb4798
commit 45ac7279de
6 changed files with 182 additions and 98 deletions

View File

@@ -39,7 +39,9 @@ class PdeMessageSiphon implements Runnable {
this.consumer = consumer;
thread = new Thread(this);
thread.setPriority(Thread.MIN_PRIORITY);
// don't set priority too low, otherwise exceptions won't
// bubble up in time (i.e. compile errors)
//thread.setPriority(Thread.MIN_PRIORITY);
thread.start();
}