Tagged Questions
0
votes
2answers
55 views
CreateProcess() in a client server application in windows
I am working on a UDP client-server application where one server is supposed to handle 40 clients which could all be logged on at once.
Now in UNIX, such issues are resolved by using the fork ...
0
votes
1answer
100 views
Running `Function Pointers` Within Running `POSIX` Thread in `C` `Thread Pool`
I'm creating a threadpool in C with pthreads, and while I have an idea of how it works, I have a few questions about the intricacies.
I've created a struct which is supposed to be my representation ...
1
vote
1answer
58 views
Chaining task pointers in C
So i'm trying to chain tasks here, but on compiling with GCC under linux, i get the warning: assignment from incompatible pointer type [enabled by default]. Even though i'm just working with pointers ...
1
vote
1answer
133 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 ...
3
votes
1answer
100 views
Wait for threads in threadpool between loop iterations
I have a few programs doing a bunch of calculations, and since my new computer has a multicore processor I decided to rewrite my programs for multithreading. I found Johan Hanssen Seferidis' thpool ...
2
votes
1answer
194 views
APR joing thread pool threads when using apr_thread_pool_schedule
gcc 4.7.2
c89
apr utility 1.4
Hello,
I am using a thread pool to start threads. However, I can't see any apr function that allows me to wait for the threads to join.
The code sippet, removed all ...
3
votes
1answer
142 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.
...
0
votes
4answers
407 views
Problems implementing a multi-threaded UDP server (threadpool?)
I am writing an audio streamer (client-server) as a project of mine (C/C++),
and I decided to make a multi threaded UDP server for this project.
The logic behind this is that each client will be ...
0
votes
1answer
78 views
creating thread pool using APR
gcc 4.7.2
Apache Portable Runtime
Hello,
I am getting started with apr using threads. My program will be using a lot of threads and I want to use a thread pool so that I can better control them.
...
0
votes
2answers
35 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
0answers
135 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
0answers
547 views
Threading in Metro mode: ThreadID
I'm creating thread using ThreadPool:RunAsync, like this:
ThreadPool::RunAsync(workItemHandler, WorkItemPriority::Normal, WorkItemOptions::TimeSliced)
This is having no ThreadId or anything Unique ...
6
votes
6answers
634 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
245 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
415 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 ...
0
votes
0answers
242 views
passing multiple arguments to a call back function in g_thread_pool_new / g_thread_pool_push
I have a situation where i create a thread pool and every time a thread is created the function will be call from within it.
This is the function signature:
callback_function(int a, int b, int ...
1
vote
0answers
173 views
apr_pool thread safety when using the apache runtime library
Files and sockets in the APR API rely on pools, I see no way to create sockets/files without the use of apr_pools. Problem is that apr_pools are not thread-safe, thus creating a socket in one thread ...
0
votes
3answers
355 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
0answers
385 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
114 views
Windows thread pools
How is it possible to use Windows thread pools from plain C, or is C++ required? Is it OK to use them with MinGW?
2
votes
1answer
1k views
Implementing pthread pool
I need to implement a thread pool using pthreads. I could not move forward. I found similar question here
But that still does not clarify my question. My question is once a thread runs to its ...
1
vote
1answer
458 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 ...
17
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
813 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 ...
1
vote
0answers
256 views
How to Write a good reliable server in c/c++ [closed]
I have to write an application server for in c/C++. So I want to know about the do's and dont's of it.
Specifically,
How to implement thread pool
how to create a good multi threaded application.
...
2
votes
1answer
785 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
1answer
80 views
My g_thread_push is not working
I am trying to create a multi-thread, jpg rotation program but I am having problems getting g_thread to work.
int processUserRequest (UserRequest *uRequest,
char * const* argv, int argc, ...
0
votes
2answers
276 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 ...
2
votes
1answer
478 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 ...
1
vote
2answers
816 views
Asynchronous File I/O using threads in C
I'm trying to understand how asynchronous file operations being emulated using threads. I've found next-to-nothing materials to read about the subject.
Is it possible that:
a process uses a thread ...
