(lll_trylock): Undo last changed. D'oh.

This commit is contained in:
Ulrich Drepper 2003-03-10 19:36:23 +00:00
parent ce2290cba4
commit 8969b769c0

View File

@ -145,7 +145,7 @@ extern int lll_unlock_wake_cb (int *__futex) attribute_hidden;
({ unsigned char ret; \
__asm __volatile (LOCK_INSTR "cmpxchgl %2, %1; setne %0" \
: "=a" (ret), "=m" (futex) \
: "r" (0), "1" (futex), "0" (0) \
: "r" (0), "1" (futex), "0" (1) \
: "memory"); \
ret; })
@ -192,7 +192,7 @@ extern int lll_unlock_wake_cb (int *__futex) attribute_hidden;
"lock\n" \
"0:\tcmpxchgl %2, %1; setne %0" \
: "=a" (ret), "=m" (futex) \
: "r" (0), "1" (futex), "0" (0), \
: "r" (0), "1" (futex), "0" (1), \
"i" (offsetof (tcbhead_t, multiple_threads)) \
: "memory"); \
ret; })