搜索资源列表
微软线程池用例
- 微软线程池用例
DELPHI 线程池源码(ThreadPool)
- DELPHI 线程池源码(ThreadPool)
多线程管理
- 一个windows应用程序,线程池管理!动态分配线程资源
高性能线程池
- 一个非常好用的线程池,
Linux下的线程池源代码.rar
- 本文给出了一个通用的线程池框架,该框架将与线程执行相关的任务进行了高层次的抽象,使之与具体的执行任务无关。另外该线程池具有动态伸缩性,它能根据执行任务的轻重自动调整线程池中线程的数量。文章的最后,我们给出一个简单示例程序,通过该示例程序,我们会发现,通过该线程池框架执行多线程任务是多么的简单。
印度人写的线程池
- 印度人写的线程池,条理清晰,类封装干净,拿来即可复用
线程池管理
- 非常好使的线程池管理程序
线程池
- 来自德国人写的线程池 里面有demo 对理解线程池 挺有帮助的
创建、管理线程池的源代码
- 创建、管理线程池的源代码- Foundation, management line Cheng Chi source code
一个好用的线程池
- 一个好用的线程池 -a user-friendly Thread Pool
线程池
- linux线程编程-linux multi-thread programming
简单的线程池
- VC完整应用程序代码,多线程 多任务,还可以自己使用-VC complete application code, multi-threaded multi-task, but also for its own use
多线程管理器源代码thread manager
- 一个多线程管理实例程序。对于win32系统编程和多线程编程的人是一个很好的东西。-a multithreaded case management procedures. Win32 system for programming and multi-threaded programming is a good thing.
VC写的一个线程池的管理实例
- 多线程编程系列。一个线程池实现的实例代码。很好。-series of multi-threaded programming. A thread pool to achieve the example code. Very good.
线程池示例代码
- VC 源 码:线 程 池 示 例 代 码.-source VC : Thread Pool sample code.
线程池
- 线程池如何使用, 优化.已经达到预期效果(How the thread pool is used and optimized has achieved the desired results)
VC写的线程池示例
- vc實現的線程池比較簡單易懂且後加了一些注釋(VC implementation of the thread pool is relatively simple and understandable, and later added a few notes)
鱼刺线程池 拨号
- 易语言 线程池 拨号用。主要是用来测试代理(The easy language thread pool dialing is mainly used to test the agent)
线程池2
- 线程池使用,对新手大家的帮助。第一次上传。(The use of thread pool, the novice help everyone. First upload.)
JAVA线程池实验报告.docx
- 用JAVA实现一个线程池,线程池在初始状态下没有任何工作线程。当工作队列中有未执行的任务时,分一下两种情况处理: . 如果线程池中工作线程数目为MAX_SIZE,那就什么也不做; . 如果线程池中工作线程数目小于MAX_SIZE,那么创建一个工作线程,使它执行新任务。 对于线程池中空闲的工作线程,如果其闲置时间超过TIMEOUT秒,就销毁该线程。(A thread pool is implemented with JAVA, an