Re: pthread_cond_signal and priority inversion
Re: pthread_cond_signal and priority inversion
- Subject: Re: pthread_cond_signal and priority inversion
- From: Kevin Dixon <email@hidden>
- Date: Mon, 20 Jun 2016 10:45:21 -0700
Per this discussion
and more detailed info
We see that use of pthread_cond_signal does not require obtaining the associated mutex, so I would more or less assume that pthread_cond_signal is non-blocking by itself. If you only have 1 thread waiting on this, then it is totally fine.
Kevin