... Will return a new threadpool with 4 threads. Submitting Work to the Thread Pool. Understand the .Net CLR thread pool Knowing how thread injection works in .Net is key to allowing your ASP.Net application to make the best use of system resources We will not use any other external libraries like Boost. In this article we will design a very simple thread pool library using C++ and POSIX threads (also known as pthreads). A thread pool is a technique that allows developers to exploit the concurrency of modern processors in an easy and efficient manner. You can also queue work items that are not related to a wait operation to the thread pool. When some method or task of an application has been called then thread pool adds this request to its queue. Thread pool picks a request from the queue and assigns a thread to this request. Multiple-core machines will have more threads than older machines. To negate this process of creation and destroying of thread in windows, CLR contains code to manage its own thread pool. If one of the threads becomes idle (as when waiting on an event) in managed code, the thread pool injects another worker thread to keep all the processors busy. Thread pool is a collection of threads which can be used to perform no of task in background. The core idea of a thread pool is to have a number of worker threads always ready for accepting work from the main process. Once thread completes its task then it sent to the pool to a queue of waiting threads, where it can be reused. A simple C thread pool implementation. It's easy because you send "work" to the pool and somehow this work gets done without blocking the main thread. They can be used to write a higher level construct, like a thread pool: Reserves one task for signaling the queue is full. The thread pool is primarily used to reduce the number of application threads and provide management of the worker threads. I wrote a simple thread pool, which works pretty well. So hope you understand requirement of thread pooling on .NET framework and Life cycle of a thread. This is usually useless to know. C++11 threading primitives are still relatively low level. Currently, the implementation: Works with pthreads only, but API is intentionally opaque to allow other implementations (Windows for instance). There is only one thread pool per CLR, this thread pool is shared by all the AppDomains controlled by the CLR. Starts all threads on creation of the thread pool. Thread pool is a set of threads that are available for the application’s own use. Quote: Thread pools typically have a maximum number of threads. A thread pool is a collection of worker threads that efficiently execute asynchronous callbacks on behalf of the application. A fork / join framework threadpool that implements work-stealing and work helping that is written in C - lazyvar/threadpool. Work is simply a … The whole point of ThreadPool in .NET is that it internally manages the threads in the ThreadPool. The “SetMaxThreads()” and “SetMinThreads()” methods are used to control the ThreadPool’s load.