Tagged Questions
1
vote
3answers
48 views
Is it acceptable and safe to pthread_join myself?
I've got a setup something a bit like this:
void* work(void*) { while (true) {/*do work*/} return 0;}
class WorkDoer
{
private:
pthread_t id;
public:
WorkDoer() { pthread_create(&id, ...
0
votes
1answer
61 views
thread free pointer
I'm trying to work with threads in C and i'm having some problems with freeing a pointer
if this is the thread function
void *executor_func(void *param) {
char *lineEx = (char *) malloc (1024);
...
8
votes
1answer
136 views
What is the correct way to build a thread-safe, multiplatform C library?
Consider the following trivial C program,
#include <errno.h>
int
main(int argc, char* argv[]) {
return errno;
}
When compiled on Solaris, the behavior of this code is dependent on the ...
0
votes
1answer
79 views
PThread Mutex Not Working as Hoped
I'm using mutexes to try to restrict access to certain part of the codes to one thread, but instead of locking once and blocking the others, it seems to allow all threads to "lock". Following is my ...
0
votes
2answers
87 views
pthreads only one thread being created
I don't understand why the first thread is created and runs through the while loop without allowing other threads to run as well. I did unlock specifically before it would go to sleep so other threads ...
1
vote
3answers
100 views
Multithreading - In an array what should I protect?
I'm working on some code that has a global array that can be accessed by two threads for reading writing purposes.
There will be no batch processing where a range of indexes are read or written, so ...
2
votes
0answers
75 views
Unexplainable pthread mutex deadlock [duplicate]
There seems to be a deadlock in my application caused by a particular mutex. However, the code clearly unlocks the mutex almost immediately after it is locked, and there are no other mutex ...
0
votes
1answer
33 views
Can -pthreads (gcc) or -mt (sun studio) or similar options cause problems?
I'm working on a build for an old project that wasn't maintained well at all; it's more or less a hodgepodge of hundreds of independent projects that get cobbled together. Naturally, that means ...
1
vote
2answers
68 views
How to make several threads read several files without interference?
I am studying mutexes and I am stuck in an exercise. For each file in a given directory, I have to create a thread to read it and display its contents (no problem if order is not correct).
So far, ...
2
votes
2answers
236 views
Reporting a thread progress to main thread in C++
In C/C++ How can I make the threads(POSIX pthreads/Windows threads) to give me a safe method to pass progress back to the main thread on the progress of the execution or my work that I’ve decided to ...
0
votes
2answers
92 views
Multithreading,blocking and semaphores
(1) In a multi-threaded process,If one thread is busy on I/O will the entire process be blocked?
(2) Which is better to use a mutex or a binary semaphore ? When should I use a mutex and when should I ...
0
votes
1answer
252 views
pthread slower than no thread at all
hello i tried to add thread to my towerdefence to make it faster but it is way slower now.
the structure of the code is quite simple
the main starting with sdl opengl init and init everything. then ...
3
votes
3answers
131 views
How often does processor cache flush?
Say I have a casual single-byte variable. I think on pretty much all systems single-byte operations are atomic, but if not please let me know. Now, say one thread updates this variable. How long ...
1
vote
2answers
82 views
C thread variable has values after declaration from nother thread
I'm trying to do some simple things in C and I'm confused.
The program is simple, the main function is handling thread according to a job que struct. Its opening up to 4 thread at a time. Around 300 ...
3
votes
3answers
1k views
pThread Mutex Locking without Global Mutex
All of the tutorials i have seen for Mutex locking with the pThread library have used a Global Mutex Lock:
See:
https://computing.llnl.gov/tutorials/pthreads/#Mutexes
...
2
votes
2answers
224 views
Passing a deque to a new pthread
I have a block of code where I am inside a pthread (lets call this thread a), and I wish to spawn a new pthread (lets call this thread b). Thread b needs to be passed a deque and I have the following ...
2
votes
2answers
382 views
Multiple threads update global variables periodically while third thread waiting to read
I have two threads A,B periodically update two global sensor reading variables, they execute the same routine. and third thread C will make some calculation on those values as soon as they are ...
1
vote
1answer
129 views
How can many threads wait on a condition variable if we place a mutex before it?
pthread_cond_broadcast is used to wake up several threads waiting on a condition variable. But, at the same time it is also said that we should place a mutex before the condition variable to avoid ...
0
votes
2answers
65 views
Regarding threading
I am facing one problem regarding threading scenario.
I have three threads in my process. One is subsystem1 thread , second is subsystem2 thread and third one is store manager thread.
Both ...
1
vote
1answer
85 views
Does a thread lock another thread?
Singularity - If a thread managed to lock a mutex, it is assured that no other thread will be able to lock the thread until the original thread releases the lock.
Non-Busy Wait - If a thread ...
1
vote
1answer
147 views
Inject a thread with LD_PRELOAD and thread-safety
I'm working on a project to inject a shared library in a program with LD_PRELOAD.
My injected library creates a new thread when it is injected into the program. All logic happens in this thread (like ...
1
vote
1answer
2k views
The calling sequence of pthread_init pthread_lock, pthread_destroy and so on?
Normally, the correct sequence is something like this:
pthread_init(&mutex,NULL);
pthread_lock(&mutex);
pthread_unlock(&mutex);
pthread_destroy(&mutex);
mutex should be initialized ...
6
votes
7answers
227 views
Thread Safety of datatstructures, Where to add synchronization primitives?
This is a design question that has been bugging me for a while now. It is pretty simple really, when you provide datastructure libraries do you build in the thread-safety primitives or just provide ...
0
votes
1answer
221 views
Is “assert I'm holding this mutex locked” Feasible?
In The Tools We Work With the author of software Varnish expressed his disappointment to the new ISO C standard draft. Especially he thinks there should be something useful like "assert I'm holding ...
5
votes
3answers
691 views
Waiting on a condition (pthread_cond_wait) and a socket change (select) simultaneously
I'm writing a POSIX compatible multi-threaded server in c/c++ that must be able to accept, read from, and write to a large number of connections asynchronously. The server has several worker threads ...
1
vote
3answers
330 views
making sure threads are created and waiting before broadcasting
I have 10 threads that are supposed to be waiting for signal.
Until now I've simply done 'sleep(3)', and that has been working fine, but is there are a more secure way to make sure, that all threads ...
2
votes
3answers
129 views
Updating large data matrix thread-safely: now using millions of mutexes?
I was revisting some code I wrote a long time ago, and decided to rewrite it to better make use of threads (and better use of programming in general..).
It is located here: ...
3
votes
2answers
199 views
For a Multithreading program, if one thread dies how you can know that ?
For a Multithreading program, if one thread dies how you can know that ?
My idea:
(1) use ps to check LWP but it is manually, not efficient.
(2) set a try-catch in each thread, if it exit ...
5
votes
1answer
810 views
pthread_join crashes intermittently with segmentation fault on OSX
I'm getting a segmentation fault while joining on a child thread and I've exhausted all options I could think of debugging, looking on Stack-overflow and the rest of the Internet! :) I'll be
as ...
0
votes
2answers
233 views
A callback function with C linkage required from C++
Consider a following C++ singleton implementation, using pthread_once for
thread safe initialization:
class MySingleton
{
public:
static MySingleton* Instance();
protected:
MySingleton() ...
0
votes
1answer
162 views
What is a thread-safe DBM library in C?
Does anyone know about a thread-safe DBM-like library with a C API?
This is: a persistent hash-table that is thread-safe.
Any pointers would be appreciated!
-2
votes
1answer
822 views
how to use Thread inside Thread with ThreadSafty [closed]
Is there a way where i can i use Thread inside Thread ? if so how to use that in Thread Safety Manner
I tried this Thread inside Thread where i got wrong result sometime. Please Help me how to ...
2
votes
2answers
729 views
leak of the memory while using pthread_cancel()
hello everyone I have some question about threads if for example I have some thread 1 which allocates some piece of the memory, and anohter thread (let's assume 2) is killing thread 1 using ...
1
vote
4answers
698 views
Thread synchronization
I have one thread that locks a mutex, writes a value to a variable, unlocks the mutex.
I do a print out here and the value has been changed. I set it to 1.
When I read the variables value in another ...
3
votes
1answer
324 views
Is there any way to enter Cocoa multithreaded mode without creating fake NSThread?
Apple Threading guide says:
For multithreaded applications, Cocoa frameworks use locks and other forms of internal synchronization to ensure they behave correctly. To prevent these locks from ...
0
votes
3answers
352 views
Can I assign a per-thread index, using pthreads?
I'm optimizing some instrumentation for my project (Linux,ICC,pthreads), and would like some feedback on this technique to assign a unique index to a thread, so I can use it to index into an array of ...
0
votes
2answers
227 views
Synchronize 2 posix threads
I have 2 threads and both of them are deleting memory at the end nedded by both. My problem is that maybe it can happen that a thread start and finish before the other one starts and so it deletes the ...
0
votes
2answers
152 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 ...
1
vote
2answers
239 views
Gracefully (i.e eventually cooperatively) suspend thread execution
I have to develop an application that tries to emulate the executing flow of an embedded target. This target has 2 levels of priority : the highest one being preemptive on the lowest one. The low ...
1
vote
1answer
222 views
Use of SIGCONT with CLONE() and CLONE_STOPPED flag set for Linux
I am trying to implement a thread create/run function using clone().I am planning to use CLONE_STOPPED flag to create a child thread but let it wait for starting execution until i send SIGCONT to the ...
4
votes
7answers
869 views
Can an integer be shared between threads safely?
Is there a problem with multiple threads using the same integer memory location between pthreads in a C program without any synchronization utilities?
To simplify the issue,
Only one thread will ...
12
votes
2answers
4k views
pthread synchronized blocking queue
I'm looking for a recommended implementation of a thread-safe blocking queue (multi producer/consumer) in C using pthread synchronization semantics.
0
votes
5answers
166 views
Why do compiler optimizations disrupt this functionality? (threads involved)
There's a thread that works normally with a loop
void* Thread (void* nothing) {
while(1) {
// Sleep if requested
if ( Sleep_c)
Sys_Sleep (Sleep_c);
...
3
votes
1answer
876 views
pthreads: How to handle signals in a main thread that creates other threads? (specific code shown)
I have a main thread, which stays in the main function, i.e. I do not create it specifically as in pthread_create, because it's not necessary. This thread opens a file, then creates other threads, ...
1
vote
1answer
303 views
using mutexes on static class member functions
I have a Class that calls at least one thread. The Class can have many threads. This thread needs to call static members of the Class. Do I have to use a mutex before to each call to static members, ...
1
vote
2answers
876 views
Is this function perfectly thread-safe?
EDIT3: It spawns in a new thread each time it is needed, "input" is a copy of a char* which is freed inside it. Assume cURL functions are thread safe.
EDIT4: Assume any non-visible functions are ...
2
votes
5answers
823 views
2
votes
1answer
3k views
pthread_join leads to segmentation fault. why?
This code receives a input file with 10 filenames, stores them into an 2d array and creates 10+1 threads: a requester and 10 converters. This is only a skeleton, so my threads only print their id, ...
0
votes
3answers
319 views
Can we lock a function with a pthreads mutex for all its other calls?
Say a program spawns a thread. That thread calls func1(). However, func1() is also called in various places elsewhere in the main app. If i wrap it in a mutex lock in the thread only, will it be safe ...
2
votes
2answers
165 views
Can a pthreads program's race condition crash the OS or X completely?
Or should one first look at the drivers involved (e.g. OpenGL drivers in a game) or the X server, or a kernel bug?
The example case is simple, two threads may be writing the same variable at the same ...