david singleton wrote:

There are a new set of robust futex patches on ftp://source.mvista.com/~dsingleton

Whoops, Todd pointed out I got the wrong address.

try:   http://source.mvista.com/~dsingleton



Dave



This update contains 3 fixes (two additional error checking fixes, one function prototype correction).

This patch set also removes the futex_set/get_attr function calls. We've decided to have glibc pass the attributes to pthread_mutex_init as an additional parameter
to sys_futex's futex_register routine.

The order of operations to set a mutex's attributes is as follows:

 pthread_mutexattr_init(&attr);
 pthread_mutexattr_setprotocol(&attr, PTHREAD_PRIO_INHERIT);
 pthread_mutex_init(&mutex1, &attr);

glibc will then pass attr as a second parameter to futex_register.

Dave

_______________________________________________
Robustmutex_dev mailing list
[EMAIL PROTECTED]
http://hermes.mvista.com/mailman/listinfo/robustmutex_dev



_______________________________________________
robustmutexes mailing list
[email protected]
https://lists.osdl.org/mailman/listinfo/robustmutexes

Reply via email to