|
From: Mirco <mi...@gm...> - 2011-03-18 09:58:14
|
i have program which is using PTHREAD_PRIO_INHERIT mutexes.
pthread_mutexattr_setprotocol(&attr, PTHREAD_PRIO_INHERIT);
pthread_mutex_init(&m_Mutex, &attr);
when i run this program under helgrind i went to deathlock. In log was
message like this
==1500== Thread #1's call to pthread_mutex_init failed
==1500== with error code 95 (EOPNOTSUPP: Operation not supported on
transport endpoint)
==1500== at 0x402628C: pthread_mutex_init (hg_intercepts.c:349)
if i run my application without valgrind, pthread_mutex_init returned
success.
Is there some posibility to run this kind of application under valgrind.
|