3
votes
3answers
41 views
Multi-threaded debugging tutorial for GDB and C
Does anybody know of a good GDB (or other Linux debugger) tutorial for debugging multi-threaded C code? I'm looking for one that includes simple examples.
1
vote
5answers
92 views
Multiple threads in C program
I'm writing a Unix application in C which uses multiple threads of control. I'm having a problem with the main function terminating before the thread it has spawned have a change t …
0
votes
3answers
101 views
Thread-safe, lock-free increment function?
UPDATED: Is there a thread-safe, lock-free and available on all Linux distros increment function available in C or C++ ?
4
votes
6answers
112 views
Is `errno` thread-safe?
In errno.h, this variable is declared as extern int errno; so my question is, is it safe to check errno value after some calls or use perror() in multi-threaded code. Is this a thr …
1
vote
6answers
59 views
Keep threads idle or kill them / restart them?
Pseudo-situation: have a class (let's say BackgroundMagic), and it has Start() and Stop() methods. The work in this class is done by one single thread, and is simply a short loop e …
0
votes
5answers
149 views
when do we go for multithreading in c#?
Hi,
I know how to implement multithreading using c#. But I want to know how is it working like.
will only one thread run at a time and when that thread is waiting will it execute …
6
votes
3answers
130 views
Why is a threaded version of this particular Perl script 200 times slower than its non-threaded counterpart?
A presentation by one Mikhael Goikhman from a 2003 Perl conference includes a pair of examples of prime-number-finding scripts. One is threaded, and the other is not. Upon running …
4
votes
1answer
147 views
Mysterious pointer-related multithreading slowdown
Background: So I'm working on a raytracer.. for my construction of the spatial partitioning scheme, I initially had some code like this:
if (msize <= 2) { // create a leaf node …
4
votes
2answers
113 views
Abort a thread?
I want to implement interruptable tasks based on background threads. What is the cleanest way to implement the TTask.Stop method? How can I abort the background thread?
The code e …
2
votes
10answers
132 views
C# How does a background thread tell a UI thread that it has finished doing something?
Scenario
Lets say you have a C# WinForms application that doing some data processing.
You have a method that retrieves data from a database that is called by the UI thread.
The ba …
2
votes
5answers
118 views
Any issues with large numbers of critical sections?
I have a large array of structures, like this:
typedef struct
{
int a;
int b;
int c;
etc...
}
data_type;
data_type data[100000];
I have a bunch of separate thre …
1
vote
6answers
238 views
Atomic Operation C++
In C++, Windows platform, I want to execute a set of function calls as atomic so that execution doesn't switches to other threads in my process. How do I go about doing that? Any i …
0
votes
1answer
27 views
Determining execution time of a thread and IO accesses by different threads
Hello
I want to determine execution time of a thread in a multi-threaded program, and I also want to know about IO accesses made by each thread.
Is there any command/tool which …
1
vote
3answers
61 views
Multi-threaded BASH programming - generalized method?
Ok, I was running POV-Ray on all the demos, but POV's still single-threaded and wouldn't utilize more than one core. So, I started thinking about a solution in BASH.
I wrote a ge …
0
votes
3answers
110 views
How to use SQLite in a multi-threaded application?
I'm developing an application with SQLite as the database, and am having a little trouble understanding how to go about using it in multiple threads (none of the other Stack Overfl …
