weak_alias(dummy_0, __acquire_ptc);
weak_alias(dummy_0, __release_ptc);
weak_alias(dummy_0, __pthread_tsd_run_dtors);
+weak_alias(dummy_0, __do_private_robust_list);
_Noreturn void pthread_exit(void *result)
{
a_dec(&libc.bytelocale_cnt_minus_1);
}
+ __do_private_robust_list();
+
if (self->detached && self->map_base) {
/* Detached threads must avoid the kernel clear_child_tid
* feature, since the virtual address will have been
#include "pthread_impl.h"
+#include <stddef.h>
+
+void __do_private_robust_list()
+{
+ pthread_t self = __pthread_self();
+ void **p, **prev, **next;
+ pthread_mutex_t *m;
+
+ for (prev=0, p=self->robust_list.head; p; p=next) {
+ next = *p;
+ m = (void *)((char *)p - offsetof(pthread_mutex_t, _m_next));
+ if (!(m->_m_type & 128)) {
+ int waiters = m->_m_waiters;
+ if (prev) *prev = next;
+ else self->robust_list.head = next;
+ int cont = a_swap(&m->_m_lock, self->tid|0x40000000);
+ if (cont < 0 || waiters) __wake(&m->_m_lock, 1, 1);
+ } else {
+ prev = p;
+ }
+ }
+}
int pthread_mutexattr_setrobust(pthread_mutexattr_t *a, int robust)
{