package openminer; import java.net.*; import java.sql.*; public class MinerThreadPool { private MinerThread[] m_MinerThreads; private boolean[] m_IsThreadUsed; private int m_MaxThread; public MinerThreadPool(int maxThread) { m_MinerThreads = new MinerThread[maxThread]; m_IsThreadUsed = new boolean[maxThread]; for(int i=0;i