Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One of the hardest things for me to initially adjust to was my first intense experience programming with pthreads in C. I was used to knowing exactly what the next line of code to be run would be and most of my debugging techniques centered around that expectation.

What are some good techniques to debugging with pthreads in C? You can suggest personal methodologies without any added tools, tools you use, or anything else that helps you debug.

P.S. I do my C programming using gcc in linux, but don't let that necessarily restrain your answer

share|improve this question
2  
+1 as i think this is a great question with a lot of 'AHA!'-potential – tr9sh Jun 11 '09 at 13:36

7 Answers

up vote 21 down vote accepted

Valgrind is an excellent tool to find race conditions and pthreads API misuses. It keeps a model of program memory (and perhaps of shared resources) accesses and will detect missing locks even when the bug is benign (which of course means that it will completely unexpectedly become less benign at some later point).

To use it, you invoke valgrind --tool=helgrind, here is its manual. Also, there is valgrind --tool=drd (manual). Helgrind and DRD use different models so they detect overlapping but possibly different set of bugs. False positives also may occur.

Anyway, valgrind has saved countless hours of debugging (not all of them though :) for me.

share|improve this answer
+1 for Valgrind – Andrew Coleson Jun 11 '09 at 16:37
1  
Yes, and use a --suppressions file to ignore false positives. This is particularly necessary if you are using C++ STL. – rleir Feb 13 '10 at 15:04
Dude this post saved my butt!!!!! I had spent days without being able to debug a program and after I found this post I fixed the problem within the hour!!! THANK YOU! – user381261 Dec 17 '10 at 21:08
I found this information about STL+valgrind: valgrind.org/docs/manual/faq.html#faq.reports – teambob Sep 15 '11 at 5:57

One of the things that will suprise you about debugging threaded programs is that you will often find the bug changes, or even goes away when you add printf's or run the program in the debugger (colloquially known as a Heisenbug).

In a threaded program, a Heisenbug usually means you have a race condition. A good programmer will look for shared variables or resources that are order-dependent. A crappy programmer will try to blindly fix it with sleep() statements.

share|improve this answer

Debugging a multithreaded application is difficult. A good debugger such as GDB (with optional DDD front end) for the *nix environment or the one that comes with Visual Studio on windows will help tremendously.

share|improve this answer
2  
DDD is just a graphical frontend for gdb (and other debuggers); it's not actually a debugger itself – Adam Rosenfield Jun 11 '09 at 16:10
1  
Right you are. Corrected. – luke Jun 11 '09 at 16:26

In the 'thinking' phase, before you start coding, use the State Machine concept. It can make the design much clearer.

printf's can help you understand the dynamics of your program. But they clutter up the source code, so use a macro DEBUG_OUT() and in its definition enable it with a boolean flag. Better still, set/clear this flag with a signal that you send via 'kill -USR1'. Send the output to a log file with a timestamp.

also consider using assert(), and then analyze your core dumps using gdb and ddd.

share|improve this answer

I tend to use lots of breakpoints. If you don't actually care about the thread function, but do care about it's side effects a good time to check them might be right before it exits or loops back to it's waiting state or whatever else it's doing.

share|improve this answer

My approach to multi-threaded debugging is similar to single-threaded, but more time is usually spent in the thinking phase:

  1. Develop a theory as to what could be causing the problem.

  2. Determine what kind of results could be expected if the theory is true.

  3. If necessary, add code that can disprove or verify your results and theory.

  4. If your theory is true, fix the problem.

Often, the 'experiment' that proves the theory is the addition of a critical section or mutex around suspect code. I will then try to narrow down the problem by systematically shrinking the critical section. Critical sections are not always the best fix (though can often be the quick fix). However, they're useful for pinpointing the 'smoking gun'.

Like I said, the same steps apply to single-threaded debugging, though it is far too easy to just jump into a debugger and have at it. Multi-threaded debugging requires a much stronger understanding of the code, as I usually find the running multi-threaded code through a debugger doesn't yield anything useful.

Also, hellgrind is a great tool. Intel's Thread Checker performs a similar function for Windows, but costs a lot more than hellgrind.

share|improve this answer

When I started doing multithreaded programming I... stopped using debuggers. For me the key point is good program decomposition and encapsulation.

Monitors are the easiest way of error-free multithreaded programming. If you cannot avoid complex lock dependencies then it is easy to check if they are cyclic - wait until program hangs ans check the stacktraces using 'pstack'. You can break cyclic locks by introducing some new threads and asynchronous communication buffers.

Use assertions, and make sure to write singlethreaded unittests for particular components of your software - you can then run them in debugger if you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.