]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/contrib/uclibc/libpthread/nptl/pthread_mutex_setprioceiling.c
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / contrib / uclibc / libpthread / nptl / pthread_mutex_setprioceiling.c
1 /* Set current priority ceiling of pthread_mutex_t.
2    Copyright (C) 2006, 2007 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Jakub Jelinek <jakub@redhat.com>, 2006.
5
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
19
20 #include <stdbool.h>
21 #include <errno.h>
22 #include <pthreadP.h>
23
24
25 int
26 pthread_mutex_setprioceiling (mutex, prioceiling, old_ceiling)
27      pthread_mutex_t *mutex;
28      int prioceiling;
29      int *old_ceiling;
30 {
31   /* The low bits of __kind aren't ever changed after pthread_mutex_init,
32      so we don't need a lock yet.  */
33   if ((mutex->__data.__kind & PTHREAD_MUTEX_PRIO_PROTECT_NP) == 0)
34     return EINVAL;
35
36   if (__sched_fifo_min_prio == -1)
37     __init_sched_fifo_prio ();
38
39   if (__builtin_expect (prioceiling < __sched_fifo_min_prio, 0)
40       || __builtin_expect (prioceiling > __sched_fifo_max_prio, 0)
41       || __builtin_expect ((prioceiling
42                             & (PTHREAD_MUTEXATTR_PRIO_CEILING_MASK
43                                >> PTHREAD_MUTEXATTR_PRIO_CEILING_SHIFT))
44                            != prioceiling, 0))
45     return EINVAL;
46
47   /* Check whether we already hold the mutex.  */
48   bool locked = false;
49   int kind = PTHREAD_MUTEX_TYPE (mutex);
50   if (mutex->__data.__owner == THREAD_GETMEM (THREAD_SELF, tid))
51     {
52       if (kind == PTHREAD_MUTEX_PP_ERRORCHECK_NP)
53         return EDEADLK;
54
55       if (kind == PTHREAD_MUTEX_PP_RECURSIVE_NP)
56         locked = true;
57     }
58
59   int oldval = mutex->__data.__lock;
60   if (! locked)
61     do
62       {
63         /* Need to lock the mutex, but without obeying the priority
64            protect protocol.  */
65         int ceilval = (oldval & PTHREAD_MUTEX_PRIO_CEILING_MASK);
66
67         oldval = atomic_compare_and_exchange_val_acq (&mutex->__data.__lock,
68                                                       ceilval | 1, ceilval);
69         if (oldval == ceilval)
70           break;
71
72         do
73           {
74             oldval
75               = atomic_compare_and_exchange_val_acq (&mutex->__data.__lock,
76                                                      ceilval | 2,
77                                                      ceilval | 1);
78
79             if ((oldval & PTHREAD_MUTEX_PRIO_CEILING_MASK) != ceilval)
80               break;
81
82             if (oldval != ceilval)
83               lll_futex_wait (&mutex->__data.__lock, ceilval | 2,
84                               PTHREAD_MUTEX_PSHARED (mutex));
85           }
86         while (atomic_compare_and_exchange_val_acq (&mutex->__data.__lock,
87                                                     ceilval | 2, ceilval)
88                != ceilval);
89
90         if ((oldval & PTHREAD_MUTEX_PRIO_CEILING_MASK) != ceilval)
91           continue;
92       }
93     while (0);
94
95   int oldprio = (oldval & PTHREAD_MUTEX_PRIO_CEILING_MASK)
96                 >> PTHREAD_MUTEX_PRIO_CEILING_SHIFT;
97   if (locked)
98     {
99       int ret = __pthread_tpp_change_priority (oldprio, prioceiling);
100       if (ret)
101         return ret;
102     }
103
104   if (old_ceiling != NULL)
105     *old_ceiling = oldprio;
106
107   int newlock = 0;
108   if (locked)
109     newlock = (mutex->__data.__lock & ~PTHREAD_MUTEX_PRIO_CEILING_MASK);
110   mutex->__data.__lock = newlock
111                          | (prioceiling << PTHREAD_MUTEX_PRIO_CEILING_SHIFT);
112   atomic_full_barrier ();
113
114   lll_futex_wake (&mutex->__data.__lock, INT_MAX,
115                   PTHREAD_MUTEX_PSHARED (mutex));
116
117   return 0;
118 }