On Tue, Mar 31, 2015 at 4:13 AM, Mark Long wrote:
> With regard to the Mutex issue that I mentioned, apparently it has been
> solved in other apps by setting a ceiling on the thread priority
>
> int OldPrio = 0;
> pthread_mutex_setprioceiling(&CritSec, 0, &OldPrio);
>
>
I do not believe this is c
With regard to the Mutex issue that I mentioned, apparently it has been solved
in other apps by setting a ceiling on the thread priority
int OldPrio = 0;
pthread_mutex_setprioceiling(&CritSec, 0, &OldPrio);It is also noted that the
issue is intermittent in other apps which matches what I am seein