static Thread minPriorityThread(O runnable) {
  Thread thread = newThread(runnable);
  thread.setPriority(Thread.MIN_PRIORITY);
  startThread(thread);
  ret thread;
}