I'm developing an application on an embedded linux OS (uClinux) and I need to be able to lock the mutex more than once (by the same thread).

I have a mutex and a mutexattr defined and initialized as follows:

pthread_mutexattr_t waiting_barcode_mutexattr;
pthread_mutex_t waiting_barcode_mutex;

pthread_mutexattr_init(&waiting_barcode_mutexattr);
pthread_mutexattr_settype(&waiting_barcode_mutexattr, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(&waiting_barcode_mutex, &waiting_barcode_mutexattr);

But when I try to acquire the lock twice it blocks on the second lock:

pthread_mutex_lock(&waiting_barcode_mutex);
pthread_mutex_lock(&waiting_barcode_mutex);

Am I initializing it wrong or is there a better way of accomplishing the same?

Thanks in advance.

Conclusions:

  • Apparently PTHREAD_MUTEX_RECURSIVE or PTHREAD_MUTEX_RECURSIVE_NP don't work so I can't create a reentrant mutex.
  • try_lock is no good either. It acquires the lock if it can and returns an error if it can't acquire the lock. Unfortunately the error just informs me that the mutex is already in use and I canĀ“t find out if the current thread already owns the lock or not.
  • pthread_mutex_lock can return an error if the current thread has the lock but for that I need to create a mutex of the type PTHREAD_MUTEX_ERRORCHECK, and I can't create one either.
link|improve this question

75% accept rate
Why are you trying to lock it more than once? Usually mutexes are used so that only one part of the code can have the lock at any given time. – bde May 12 '10 at 17:36
Basically its tied to the the way I set up the code and the auxiliary functions. Maybe I should change my code and avoid this. Anyway, I'm curious. – Megacan May 12 '10 at 17:45
3  
Are you checking return value of attribute and mutex initialization calls? Might it be that your libc just doesn't support recursive locks? – Nikolai N Fetissov May 12 '10 at 17:53
Are you trying to use semaphores ( en.wikipedia.org/wiki/Semaphore_(programming%29, minek.com/files/unix_examples/semab.html )? – Brian May 12 '10 at 18:19
@Nikolai: I was forgetting to test the returns, but I tested them now and they are all returning 0. @Brian: No I'm not trying to use semaphores. – Megacan May 13 '10 at 9:10
feedback

2 Answers

Isn't this doing what you would expect?

The first call acquires the lock, and the second one will block until the first lock is released (pthread_mutex_unlock). This is what locks do.

From the documentation:

"If the mutex is already locked, the calling thread blocks until the mutex becomes available."

Perhaps you want pthread_mutex_trylock? It's hard to say unless we know what you are trying to accomplish.

CORRECTION:

I didn't see that you were setting PTHREAD_MUTEX_RECURSIVE.... Let me think about this some more.

AFTER THINKING:

From poking around google codesearch, it looks like PTHREAD_MUTEX_RECURSIVE is not implemented in all libs. You may try PTHREAD_MUTEX_RECURSIVE_NP, or you may have do something fancy to get around this.

link|improve this answer
I guess I'll have to use trylock then. I've been programming in .Net for the past two years and I was assuming that the locks were reentrant by default. Haven't programmed in C in a while. – Megacan May 13 '10 at 9:12
feedback

It sounds like the pthread mutex is not reentrant. You could work around this with a flag indicating if your thread already has locked the mutex:

bool haveLock = false;// thread variable
pthread_mutex_t waiting_barcode_mutex; // also thread var

mylock()
{
   if( haveLock ) return; // no need to lock twice
   pthread_mutex_lock(&waiting_barcode_mutex);
   haveLock = true;
}

myunlock()
{
   haveLock = false;
   pthread_mutex_unlock(&waiting_barcode_mutex); // or whatever the unlock call is
}
link|improve this answer
1  
I believe this is what pthread_mutex_trylock is for. – Jeff B May 12 '10 at 17:42
feedback

Your Answer

 
or
required, but never shown

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