2003-02-05 09:54:24 +00:00
|
|
|
/* Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
|
|
|
|
|
|
|
#ifndef _LOWLEVELLOCK_H
|
|
|
|
#define _LOWLEVELLOCK_H 1
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <bits/pthreadtypes.h>
|
2003-09-22 21:30:25 +00:00
|
|
|
#include <atomic.h>
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
#define SYS_futex 238
|
|
|
|
#define FUTEX_WAIT 0
|
|
|
|
#define FUTEX_WAKE 1
|
2003-05-30 03:20:29 +00:00
|
|
|
#define FUTEX_REQUEUE 3
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
/* Initializer for compatibility lock. */
|
|
|
|
#define LLL_MUTEX_LOCK_INITIALIZER (0)
|
|
|
|
|
|
|
|
#define lll_futex_wait(futex, val) \
|
|
|
|
({ \
|
|
|
|
register unsigned long int __r2 asm ("2") = (unsigned long int) (futex); \
|
|
|
|
register unsigned long int __r3 asm ("3") = FUTEX_WAIT; \
|
|
|
|
register unsigned long int __r4 asm ("4") = (unsigned long int) (val); \
|
|
|
|
register unsigned long int __r5 asm ("5") = 0ul; \
|
|
|
|
register unsigned long __result asm ("2"); \
|
|
|
|
\
|
|
|
|
__asm __volatile ("svc %b1" \
|
|
|
|
: "=d" (__result) \
|
|
|
|
: "i" (SYS_futex), "0" (__r2), "d" (__r3), \
|
|
|
|
"d" (__r4), "d" (__r5) \
|
|
|
|
: "cc", "memory" ); \
|
|
|
|
__result; \
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
#define lll_futex_timed_wait(futex, val, timespec) \
|
|
|
|
({ \
|
|
|
|
register unsigned long int __r2 asm ("2") = (unsigned long int) (futex); \
|
|
|
|
register unsigned long int __r3 asm ("3") = FUTEX_WAIT; \
|
|
|
|
register unsigned long int __r4 asm ("4") = (unsigned long int) (val); \
|
|
|
|
register unsigned long int __r5 asm ("5") = (unsigned long int)(timespec);\
|
|
|
|
register unsigned long int __result asm ("2"); \
|
|
|
|
\
|
|
|
|
__asm __volatile ("svc %b1" \
|
|
|
|
: "=d" (__result) \
|
|
|
|
: "i" (SYS_futex), "0" (__r2), "d" (__r3), \
|
|
|
|
"d" (__r4), "d" (__r5) \
|
|
|
|
: "cc", "memory" ); \
|
|
|
|
__result; \
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
#define lll_futex_wake(futex, nr) \
|
|
|
|
({ \
|
|
|
|
register unsigned long int __r2 asm ("2") = (unsigned long int) (futex); \
|
|
|
|
register unsigned long int __r3 asm ("3") = FUTEX_WAKE; \
|
|
|
|
register unsigned long int __r4 asm ("4") = (unsigned long int) (nr); \
|
|
|
|
register unsigned long int __result asm ("2"); \
|
|
|
|
\
|
|
|
|
__asm __volatile ("svc %b1" \
|
|
|
|
: "=d" (__result) \
|
|
|
|
: "i" (SYS_futex), "0" (__r2), "d" (__r3), "d" (__r4) \
|
|
|
|
: "cc", "memory" ); \
|
|
|
|
__result; \
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2003-05-30 03:20:29 +00:00
|
|
|
#define lll_futex_requeue(futex, nr_wake, nr_move, mutex) \
|
|
|
|
({ \
|
|
|
|
register unsigned long int __r2 asm ("2") = (unsigned long int) (futex); \
|
|
|
|
register unsigned long int __r3 asm ("3") = FUTEX_REQUEUE; \
|
|
|
|
register unsigned long int __r4 asm ("4") = (long int) (nr_wake); \
|
|
|
|
register unsigned long int __r5 asm ("5") = (long int) (nr_move); \
|
|
|
|
register unsigned long int __r6 asm ("6") = (unsigned long int) (mutex); \
|
|
|
|
register unsigned long __result asm ("2"); \
|
|
|
|
\
|
|
|
|
__asm __volatile ("svc %b1" \
|
|
|
|
: "=d" (__result) \
|
|
|
|
: "i" (SYS_futex), "0" (__r2), "d" (__r3), \
|
|
|
|
"d" (__r4), "d" (__r5), "d" (__r6) \
|
|
|
|
: "cc", "memory" ); \
|
|
|
|
__result; \
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2003-02-05 09:54:24 +00:00
|
|
|
#define lll_compare_and_swap(futex, oldval, newval, operation) \
|
|
|
|
do { \
|
|
|
|
__typeof (futex) __futex = (futex); \
|
|
|
|
__asm __volatile (" l %1,%0\n" \
|
|
|
|
"0: " operation "\n" \
|
|
|
|
" cs %1,%2,%0\n" \
|
|
|
|
" jl 0b\n" \
|
|
|
|
"1:" \
|
|
|
|
: "=Q" (*__futex), "=&d" (oldval), "=&d" (newval) \
|
|
|
|
: "m" (*__futex) : "cc" ); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
__attribute__ ((always_inline))
|
|
|
|
__lll_mutex_trylock (int *futex)
|
|
|
|
{
|
|
|
|
unsigned int old;
|
|
|
|
|
|
|
|
__asm __volatile ("cs %0,%3,%1"
|
|
|
|
: "=d" (old), "=Q" (*futex)
|
|
|
|
: "0" (0), "d" (1), "m" (*futex) : "cc" );
|
|
|
|
return old != 0;
|
|
|
|
}
|
|
|
|
#define lll_mutex_trylock(futex) __lll_mutex_trylock (&(futex))
|
|
|
|
|
|
|
|
|
2003-09-22 21:30:25 +00:00
|
|
|
extern void __lll_lock_wait (int *futex) attribute_hidden;
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
static inline void
|
|
|
|
__attribute__ ((always_inline))
|
|
|
|
__lll_mutex_lock (int *futex)
|
|
|
|
{
|
2003-09-22 21:30:25 +00:00
|
|
|
if (atomic_compare_and_exchange_bool_acq (futex, 1, 0) != 0)
|
|
|
|
__lll_lock_wait (futex);
|
2003-02-05 09:54:24 +00:00
|
|
|
}
|
|
|
|
#define lll_mutex_lock(futex) __lll_mutex_lock (&(futex))
|
|
|
|
|
2003-05-30 13:46:04 +00:00
|
|
|
static inline void
|
|
|
|
__attribute__ ((always_inline))
|
|
|
|
__lll_mutex_cond_lock (int *futex)
|
|
|
|
{
|
2003-09-22 21:30:25 +00:00
|
|
|
if (atomic_compare_and_exchange_bool_acq (futex, 2, 0) != 0)
|
|
|
|
__lll_lock_wait (futex);
|
2003-05-30 13:46:04 +00:00
|
|
|
}
|
|
|
|
#define lll_mutex_cond_lock(futex) __lll_mutex_cond_lock (&(futex))
|
|
|
|
|
2003-09-22 21:30:25 +00:00
|
|
|
extern int __lll_timedlock_wait
|
|
|
|
(int *futex, const struct timespec *) attribute_hidden;
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
static inline int
|
|
|
|
__attribute__ ((always_inline))
|
2003-07-31 19:26:38 +00:00
|
|
|
__lll_mutex_timedlock (int *futex, const struct timespec *abstime)
|
2003-02-05 09:54:24 +00:00
|
|
|
{
|
|
|
|
int result = 0;
|
2003-09-22 21:30:25 +00:00
|
|
|
if (atomic_compare_and_exchange_bool_acq (futex, 1, 0) != 0)
|
|
|
|
result = __lll_timedlock_wait (futex, abstime);
|
2003-02-05 09:54:24 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#define lll_mutex_timedlock(futex, abstime) \
|
|
|
|
__lll_mutex_timedlock (&(futex), abstime)
|
|
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
__attribute__ ((always_inline))
|
|
|
|
__lll_mutex_unlock (int *futex)
|
|
|
|
{
|
|
|
|
int oldval;
|
2003-05-30 04:53:50 +00:00
|
|
|
int newval = 0;
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
lll_compare_and_swap (futex, oldval, newval, "slr %2,%2");
|
|
|
|
if (oldval > 1)
|
|
|
|
lll_futex_wake (futex, 1);
|
|
|
|
}
|
2003-05-30 03:20:29 +00:00
|
|
|
#define lll_mutex_unlock(futex) \
|
|
|
|
__lll_mutex_unlock(&(futex))
|
|
|
|
|
2003-05-30 04:53:50 +00:00
|
|
|
|
|
|
|
static inline void
|
|
|
|
__attribute__ ((always_inline))
|
|
|
|
__lll_mutex_unlock_force (int *futex)
|
|
|
|
{
|
|
|
|
*futex = 0;
|
|
|
|
lll_futex_wake (futex, 1);
|
|
|
|
}
|
2003-05-30 03:20:29 +00:00
|
|
|
#define lll_mutex_unlock_force(futex) \
|
2003-05-30 04:53:50 +00:00
|
|
|
__lll_mutex_unlock_force(&(futex))
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
#define lll_mutex_islocked(futex) \
|
|
|
|
(futex != 0)
|
|
|
|
|
|
|
|
|
|
|
|
/* We have a separate internal lock implementation which is not tied
|
2003-09-22 21:30:25 +00:00
|
|
|
to binary compatibility. We can use the lll_mutex_*. */
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
/* Type for lock object. */
|
|
|
|
typedef int lll_lock_t;
|
|
|
|
|
|
|
|
/* Initializers for lock. */
|
2003-09-22 21:30:25 +00:00
|
|
|
#define LLL_LOCK_INITIALIZER (0)
|
|
|
|
#define LLL_LOCK_INITIALIZER_LOCKED (1)
|
2003-02-05 09:54:24 +00:00
|
|
|
|
2003-09-22 21:30:25 +00:00
|
|
|
#define lll_trylock(futex) lll_mutex_trylock (futex)
|
|
|
|
#define lll_lock(futex) lll_mutex_lock (futex)
|
|
|
|
#define lll_unlock(futex) lll_mutex_unlock (futex)
|
|
|
|
#define lll_islocked(futex) lll_mutex_islocked (futex)
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
extern int lll_unlock_wake_cb (int *__futex) attribute_hidden;
|
|
|
|
|
|
|
|
/* The states of a lock are:
|
|
|
|
1 - untaken
|
|
|
|
0 - taken by one user
|
|
|
|
<0 - taken by more users */
|
|
|
|
|
|
|
|
|
|
|
|
/* The kernel notifies a process with uses CLONE_CLEARTID via futex
|
|
|
|
wakeup when the clone terminates. The memory location contains the
|
|
|
|
thread ID while the clone is running and is reset to zero
|
|
|
|
afterwards. */
|
|
|
|
static inline void
|
|
|
|
__attribute__ ((always_inline))
|
|
|
|
__lll_wait_tid (int *ptid)
|
|
|
|
{
|
|
|
|
int tid;
|
|
|
|
|
|
|
|
while ((tid = *ptid) != 0)
|
|
|
|
lll_futex_wait (ptid, tid);
|
|
|
|
}
|
|
|
|
#define lll_wait_tid(tid) __lll_wait_tid(&(tid))
|
|
|
|
|
2003-09-22 21:30:25 +00:00
|
|
|
extern int __lll_timedwait_tid (int *, const struct timespec *)
|
2003-02-05 09:54:24 +00:00
|
|
|
attribute_hidden;
|
|
|
|
|
2003-09-22 21:30:25 +00:00
|
|
|
#define lll_timedwait_tid(tid, abstime) \
|
|
|
|
({ \
|
|
|
|
int __res = 0; \
|
|
|
|
if ((tid) != 0) \
|
|
|
|
__res = __lll_timedwait_tid (&(tid), (abstime)); \
|
|
|
|
__res; \
|
|
|
|
})
|
2003-02-05 09:54:24 +00:00
|
|
|
|
|
|
|
/* Conditional variable handling. */
|
|
|
|
|
|
|
|
extern void __lll_cond_wait (pthread_cond_t *cond)
|
|
|
|
attribute_hidden;
|
|
|
|
extern int __lll_cond_timedwait (pthread_cond_t *cond,
|
|
|
|
const struct timespec *abstime)
|
|
|
|
attribute_hidden;
|
|
|
|
extern void __lll_cond_wake (pthread_cond_t *cond)
|
|
|
|
attribute_hidden;
|
|
|
|
extern void __lll_cond_broadcast (pthread_cond_t *cond)
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
|
|
#define lll_cond_wait(cond) \
|
|
|
|
__lll_cond_wait (cond)
|
|
|
|
#define lll_cond_timedwait(cond, abstime) \
|
|
|
|
__lll_cond_timedwait (cond, abstime)
|
|
|
|
#define lll_cond_wake(cond) \
|
|
|
|
__lll_cond_wake (cond)
|
|
|
|
#define lll_cond_broadcast(cond) \
|
|
|
|
__lll_cond_broadcast (cond)
|
|
|
|
|
|
|
|
#endif /* lowlevellock.h */
|