]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/contrib/uclibc/libpthread/nptl/sysdeps/unix/sysv/linux/arm/lowlevellock.c
update
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libpthread / nptl / sysdeps / unix / sysv / linux / arm / lowlevellock.c
1 /* low level locking for pthread library.  Generic futex-using version.
2    Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <errno.h>
21 #include <sysdep.h>
22 #include <lowlevellock.h>
23 #include <sys/time.h>
24 #include <tls.h>
25
26 void
27 __lll_lock_wait_private (int *futex)
28 {
29   do
30     {
31       int oldval = atomic_compare_and_exchange_val_acq (futex, 2, 1);
32       if (oldval != 0)
33         lll_futex_wait (futex, 2, LLL_PRIVATE);
34     }
35   while (atomic_compare_and_exchange_bool_acq (futex, 2, 0) != 0);
36 }
37
38
39 /* These functions don't get included in libc.so  */
40 #ifdef IS_IN_libpthread
41 void
42 __lll_lock_wait (int *futex, int private)
43 {
44   do
45     {
46       int oldval = atomic_compare_and_exchange_val_acq (futex, 2, 1);
47       if (oldval != 0)
48         lll_futex_wait (futex, 2, private);
49     }
50   while (atomic_compare_and_exchange_bool_acq (futex, 2, 0) != 0);
51 }
52
53
54 int
55 __lll_timedlock_wait (int *futex, const struct timespec *abstime, int private)
56 {
57   struct timespec rt;
58
59   /* Reject invalid timeouts.  */
60   if (abstime->tv_nsec < 0 || abstime->tv_nsec >= 1000000000)
61     return EINVAL;
62
63   /* Upgrade the lock.  */
64   if (atomic_exchange_acq (futex, 2) == 0)
65     return 0;
66
67   do
68     {
69       struct timeval tv;
70
71       /* Get the current time.  */
72       (void) gettimeofday (&tv, NULL);
73
74       /* Compute relative timeout.  */
75       rt.tv_sec = abstime->tv_sec - tv.tv_sec;
76       rt.tv_nsec = abstime->tv_nsec - tv.tv_usec * 1000;
77       if (rt.tv_nsec < 0)
78         {
79           rt.tv_nsec += 1000000000;
80           --rt.tv_sec;
81         }
82
83       /* Already timed out?  */
84       if (rt.tv_sec < 0)
85         return ETIMEDOUT;
86
87       // XYZ: Lost the lock to check whether it was private.
88       lll_futex_timed_wait (futex, 2, &rt, private);
89     }
90   while (atomic_compare_and_exchange_bool_acq (futex, 2, 0) != 0);
91
92   return 0;
93 }
94
95
96 int
97 __lll_timedwait_tid (int *tidp, const struct timespec *abstime)
98 {
99   int tid;
100
101   if (abstime->tv_nsec < 0 || abstime->tv_nsec >= 1000000000)
102     return EINVAL;
103
104   /* Repeat until thread terminated.  */
105   while ((tid = *tidp) != 0)
106     {
107       struct timeval tv;
108       struct timespec rt;
109
110       /* Get the current time.  */
111       (void) gettimeofday (&tv, NULL);
112
113       /* Compute relative timeout.  */
114       rt.tv_sec = abstime->tv_sec - tv.tv_sec;
115       rt.tv_nsec = abstime->tv_nsec - tv.tv_usec * 1000;
116       if (rt.tv_nsec < 0)
117         {
118           rt.tv_nsec += 1000000000;
119           --rt.tv_sec;
120         }
121
122       /* Already timed out?  */
123       if (rt.tv_sec < 0)
124         return ETIMEDOUT;
125
126       /* Wait until thread terminates.  */
127       // XYZ: Lost the lock to check whether it was private.
128       if (lll_futex_timed_wait (tidp, tid, &rt, LLL_SHARED) == -ETIMEDOUT)
129         return ETIMEDOUT;
130     }
131
132   return 0;
133 }
134 #endif