up vote 7 down vote favorite
4
share [g+] share [fb]

I'm encountering the following error at unpredictable times in a linux-based (arm) communications application:

pthread_mutex_lock.c:82: __pthread_mutex_lock: Assertion `mutex->__data.__owner == 0' failed.

Google turns up a lot of references to that error, but little information that seems relevant to my situation. I was wondering if anyone can give me some ideas about how to troubleshoot this error. Does anyone know of a common cause for this assertion?

Thanks in advance.

link|improve this question

80% accept rate
2  
Having eliminated all other possibilities, I decided to invest in some RTFM. It appears I have been using the mutex in a way that is not officially supported. When a thread is waiting for some external stimulus, it waits on its mutex. The thread comes back to life when the mutex is released, always from another thread. So the releasing thread is never the mutex owner. I changed the implementation to use a condition variable. I don't know yet if this is the reason for my troubles. I've been (mis)using the mutex this way for years and haven't had any problems with it until now. – Dave Causey Jul 10 '09 at 2:42
2  
Aren't pthread_mutexes (and mutexes in general) documented such that they must be unlocked by the same thread that locked them? The fact that it happens to work on other platforms is implementation-specific and not portable. – ephemient Jul 10 '09 at 14:53
I think that's what I said in my comment above. My implementation was misusing the mutex, so I changed it to make correct usage of a condition variable. All that remains is to confirm that this was in fact behind the intermittent assertion. – Dave Causey Jul 10 '09 at 21:36
feedback

3 Answers

up vote 5 down vote accepted

Rock solid for 4 days straight. I'm declaring victory on this one. The answer is "stupid user error" (see comments above). A mutex should only be unlocked by the thread that locked it. Thanks for bearing with me.

link|improve this answer
feedback

The quick bit of Googling I've done often blames this on a compiler mis-optimization. A decent summation is here. It might be worth looking at the assembly output to see if gcc is producing the right code.

Either that or you are managing to stomp on the memory used by the pthread library... those sort of problems are rather tricky to find.

link|improve this answer
I've been down the compiler mis-optimization path, which doesn't appear to be an issue in this case: assert (mutex->__data.__owner == 0); 154: e5953008 ldr r3, [r5, #8] 158: e3530000 cmp r3, #0 ; 0x0 15c: 1a0001a0 bne 7e4 <__pthread_mutex_lock+0x7e4> – Dave Causey Jul 9 '09 at 18:50
feedback

I was faced with the same problem and google sent me here. The problem with my program was that in some situations I was not initializing the mutex before locking it.

Although the statement in the accepted answer is legitimate, I think it is not the cause of this failed assertion. Because the error is reported on pthread_mutex_lock (and not unlock).

Also, as always, it is more likely that the error is in the programmers source code rather than the compiler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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