Tagged Questions
1
vote
2answers
54 views
can more than one thread operate the same database?
A scenario I can't understand:
A process called DBserver has five threads, each threads has one connection to the Mysql database. Every time we want to execute a sql, we send it to DBserver, then ...
0
votes
1answer
89 views
How to convert synchronous blocking shared memory model code to asynchronous coroutines running on thread pool?
While there are lots of solutions matching my question partially, I'd like to know if a complete match exists. It's hard to find a complete solution because of these partial ones occupying search ...
1
vote
1answer
137 views
Creating a pthreads thread pool to handle get requests
I find it hard to believe there isn't an answer or tutorial for this, but am struggling to find one anywhere!
I have to (and have) build a multithreaded server to handle GET requests in C.
For full ...
0
votes
1answer
161 views
pthreads: thread pool synchronization methods for reentrant/reusable threads?
this is my first post here, thank you for your tolerance in advance.
I have a thread pool with job queue >> number of threads.
Process flow:
Init thread pool (M number of threads)
Put N number of ...
1
vote
1answer
43 views
Multiple models to load using multi-thread
I have 180 SVM models to run concurrently.
Currently I load the models into an array at the start.
Then when I need to run the models, I use pthread to create 180 threads,
then each thread acquires ...
0
votes
2answers
36 views
can a thread deploy the signal not immediately?
Imagine that many threads send signal(maybe created by pthread_kill) to a thread.but the thread cant deploy them immediately. Would these signals be lost? How to solve these singals diliveried from ...
0
votes
1answer
142 views
platform independent inter thread communication
I have a process which receives multiple jobs and picks a thread from thread pool and assigns a job to it, this thread in turn may spawn another set of threads from its own thread pool. Now when a ...
0
votes
0answers
138 views
Problems in destroying threads in thread pool
I implements a thread pools using C programming language in Linux enviromnent.There is a blocking task queue, we can put task in the task queue, the threads in the thread pool get task from the task ...
0
votes
2answers
150 views
Crash related to boost::function usage in thread pool
I am trying to implement thread pool in C++ using pthread. I want to encapsulate logic related to threads management in one object which is taking ownership of these threads. That means whenever this ...
2
votes
1answer
232 views
How to safely destruct Posix thread pool in C++
I am trying to implement thread pool in C++ using pthread. I want to encapsulate logic related to threads management in one object which is taking ownership of these threads. That means whenever this ...
0
votes
3answers
767 views
Pool of threads implementation using pthreads in C++
I'm having trouble in designing a program which has pool of threads.
The main issue i'm stuck at is when a thread is done with work the parent has to wait on the threadId (this is how a parent waits ...
1
vote
1answer
221 views
proper threadpool uisng pthreads
I am trying to write a customized threadpool suited to my purpose using pthreads, and I am new to pthreads. I read these (POSIX threads programming and Linux Tutorial Posix Threads) tutorials online ...
6
votes
6answers
678 views
How should a thread pool be implemented in C?
I'm programming in C++, but I'm only using pthread.h, no boost or C++11 threads.
So I'm trying to use threads but based on one of my previous questions (link), this doesn't seem feasible since ...
1
vote
1answer
253 views
threadpools - boss/worker vs peer (workcrew) models
I'm aiming to use a threadpool with pthreads and am trying to choose between these two models of threading and it seems to me that the peer model is more suitable when working with fixed input, ...
1
vote
3answers
430 views
Run function when pthread exits
I have a C++ app in which I create pthreads to run user provided functions. I want to be able to be alerted in some way when a thread exits so that I can remove it from an array of pthread that I am ...
1
vote
0answers
395 views
How to design MongoDB connection pooling using C driver?
I've a multi-threaded (POSIX threads) application written in C which now needs to send data to MongoDB. Each thread is supposed to send data independently. Currently, I am making a new connection in ...
0
votes
1answer
250 views
Pthread Passing Function to Pool
I am working on creating a threadpool from scratch as part of an assignment and am able to create the thread pool and then pass each created thread a function that constantly loops. My question is how ...
1
vote
1answer
470 views
pthread threadpool scenario
I want to achieve following kind of scenario using pthreads:
There are two kinds of threads in a thread pool. First kind executes (say) fun1 second executes fun2. The main thread starts these two ...
3
votes
2answers
1k views
C: What's the way to make a poolthread with pthreads?
I have a queue of jobs and I want to make a pool of 4 threads where I can throw my jobs at. What I am stuck at is in how to make the threads and keep them suspended while there is no work.
JOB QUEUE ...
18
votes
4answers
4k views
Existing threadpool C implementation
What open-source implementation(s) in C for a pthreads thread pool would you recommend ?
Additional points if this implementation is :
Light-weight: glib, APR, NSPR and others come with a big ...
0
votes
4answers
830 views
C thread pool efficiency [duplicate]
Possible Duplicate:
How many threads is too many?
I have a large for loop, in which I want each item to be passed to a function on a thread. I have a thread pool of a certain size, and I ...
2
votes
1answer
836 views
Is accept() thread-safe?
I'm currently writing a simple webserver in C for a course I'm doing. One requirement is for us to implement a thread pool to handle connections using pthreads.
I know how I would go about doing this ...
0
votes
2answers
157 views
What are working threads?
What are this working threads? How to implement them? And when to use them. I ask this because many people mention them but I dont find an the net some example of them. Or is just a saying for ...
0
votes
2answers
280 views
Multi-threading jobs that need to maintain order
I have a c/c++ process that has a long queue and every element in this queue needs to be
sent to a multiple (TCP) servers. The single thread is an option that works, however it is slow.
I need to ...
10
votes
3answers
10k views
A very simple thread pool using pthreads in C++
I'm trying to understand some of the basics of using POSIX pthreads. The kind of thing I need to do (eventually) is parallelize some computations, using a thread pool model. At present I want to ...
0
votes
1answer
70 views
How to cause locks to be freed in one thread which were set by another
I have a simple thread pool written in pthreads implemented using a pool of locks so I know which threads are available. Each thread also has a condition variable it waits on so I can signal it to do ...
