Skip to content

Commit

Permalink
#1506 Reduces thread priority to normal for dispatcher and usb tuner …
Browse files Browse the repository at this point in the history
…controllers.
  • Loading branch information
Dennis Sheirer committed Mar 25, 2023
1 parent 72daeaf commit 35cd756
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,6 @@ public void start()
mProcessing = true;
mThread = new Thread(this);
mThread.setName("sdrtrunk USB tuner - bus [" + mBus + "] port [" + mPortAddress + "]");
mThread.setPriority(Thread.MAX_PRIORITY);
mThread.start();
}
}
Expand Down
1 change: 0 additions & 1 deletion src/main/java/io/github/dsheirer/util/Dispatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public void start()
{
mThread = new Thread(new Processor());
mThread.setName(mThreadName);
// mThread.setPriority(Thread.MAX_PRIORITY);
mThread.start();
}
}
Expand Down

0 comments on commit 35cd756

Please sign in to comment.