startThreadPool调用流程
ProcessState::self()->startThreadPool();1、startThreadPool()的主要作用是:(ProcessState.cpp)调用spawnPooledThread( true )2、spawnPooledThread这个函数里面主要作用是:(ProcessState.cpp)启动一个线程sp<Thread> t = new PoolThread(isMain);t->run(buf); //