mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 06:10:06 +00:00
9a93ac006d
* db2/db_int.h: Change tsl_t type to u_int32_t. * db2/mutex/mutex.c: Allow Alpha mutex definitions. * db2/mutex/alpha.h: New file. * db2/mutex/sparc.gcc: Fix store code for v9. Simplify clear code. * sysdeps/alpha/Makefile [db2]: Set CFLAGS of mutex.c to make spinlocks known. Patches by Richard Henderson.
27 lines
574 B
C
27 lines
574 B
C
/* For alpha, 0 is clear, 1 is set. */
|
|
|
|
#ifdef __GNUC__
|
|
#define TSL_SET(tsl) ({ \
|
|
register tsl_t *__l = (tsl); \
|
|
int __r; \
|
|
asm volatile( \
|
|
"1: ldl_l %0,%1\n" \
|
|
" blbs %0,2f\n" \
|
|
" mov 1,%0\n" \
|
|
" stl_c %0,%1\n" \
|
|
" bne %0,1b\n" \
|
|
" mb\n" \
|
|
"2:" \
|
|
: "=&r"(__r), "=m"(*__l) : "m"(*__l) : "memory"); \
|
|
__r; \
|
|
})
|
|
#endif
|
|
|
|
#ifdef __DECC
|
|
#include <alpha/builtins.h>
|
|
#define TSL_SET(tsl) (__LOCK_LONG_RETRY((tsl), 1) != 0)
|
|
#endif
|
|
|
|
#define TSL_UNSET(tsl) (*(tsl) = 0)
|
|
#define TSL_INIT(tsl) TSL_UNSET(tsl)
|