1
vote
0answers
105 views

Windows CreateThreadpool limit threads count in C++

I use new Thread Pool Windows API in C++ (StartThreadpoolIo/StartThreadpoolIo) in my server to manage IO thread pool (clients are connected via sockets). I have explored MSDN in details but didn't ...
3
votes
1answer
149 views

I/O Completion Port vs. QueueUserApc?

Under Windows, there are two means to insert work items for avoiding to create too many threads: Means 1: Use IOCP; Means 2: Use QueueUserApc. However, means 1 is far more intricate than means 2. ...
2
votes
4answers
632 views

Implementing a simple thread pool

I'm currently in the need of a simple and efficient thread pool implementation. I have searched here and also on Google and found numerous interesting links, but nothing i've found so far seems to be ...
1
vote
2answers
161 views

When/how do I Unregister a RegisteredWaitHandle

I'm using ThreadPool.UnsafeRegisterWaitForSingleObject (henceforth RWFSO) to asynchronously wait on a Semaphore. It returns me a RegisteredWaitHandle which I cannot easily Unregister(). I need to ...
0
votes
3answers
358 views

Sharing one buffer - thread safe

I am not much into scheduling threads, i have like 4-5 threads and each of them will add data to one same buffer at random time. How i can schedule the threads so there is no case two or more threads ...
1
vote
1answer
271 views

how to set thread priority in privately manged pools in Windows?

I am following the examples given here. While I am able to successfully create threads, these threads have default affinity to all the processes. How do I set affinity? Can someone please provide an ...
1
vote
1answer
2k views

Windows API Thread Pool simple example

[EDIT: thanks to MSalters answer and Raymond Chen's answer to InterlockedIncrement vs EnterCriticalSection/counter++/LeaveCriticalSection, the problem is solved and the code below is working properly. ...
0
votes
1answer
238 views

A kind of thread pool

I used to call CreateThread() for all my threads, and WaitForMultipleObjects(), an leave the routine. To get somewhat faster code, I'd like to do a kind of thread pool. My thread pools are ...
1
vote
1answer
242 views

Using the new Vista Thread Pool API in a DLL also loaded in XP (thread pool code not used in XP)

We are producing a DLL that is targeted at both Windows 7 and XP. We want our DLL to use the newer Vista Thread Pool API when the DLL is loaded on a Windows 7 system and not when it is loaded on an XP ...
0
votes
0answers
157 views

Python thread pool does not work properly on Windows. One thread dominates when running on Windows.

I have a multi threaded python application, for thread pooling I used code from here. The program engages in network reading excessively and each thread sleep timely to reduce overhead on server it ...
0
votes
1answer
244 views

Windows QueueUserWorkItem C++ Release mode issue

I have c++ code that uses QueueUserWorkItem to call a function that from a wrapper class that calls winsock accept. This works fine in debug, it also works if I run the release executable from using ...
4
votes
2answers
564 views

Wait for tasks to get completed in threadpool

I have created a thread pool in C++ which stores all tasks in a queue. Thread pool start n number of threads which takes tasks from queue , process each task and then delete tasks from queue. Now , I ...
1
vote
2answers
522 views

SetThreadAffinityMask of pooled thread

I am wondering whether it is possible to set the processor affinity of a thread obtained from a thread pool. More specifically the thread is obtained through the use of TimerQueue API which I use to ...
2
votes
1answer
480 views

Cancelling scheduled work/io/timer items in WIN32 thread pool

I've been playing around with Windows' (new?) thread pool API. I've been following through with the example in the Using the Thread Pool Functions and I've been taking a good hard look at the API on ...
4
votes
6answers
1k views

A ThreadPool library in C++

I am looking for a good and stable threadpool library for C++ that's fairly well documented. I know about the Native Windows thread pool API and the newer Vista Thread Pool API, however my program ...
1
vote
5answers
1k views

Threadpool is getting used by windows service problem

I have created a windows service which is currently having three timers. First timer is waking up every 15 sec, second timer is waking every min. and the third timer is waking everyday. THe problem ...