From 9921a880001f11280c8e165310ce8f65eecd5a42 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 10 Mar 2003 09:10:30 +0000 Subject: [PATCH] (lll_trylock): Initialize %eax to zero. --- nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h index 6ffc41f..a4d0fab 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h @@ -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" (1), \ + : "r" (0), "1" (futex), "0" (0), \ "i" (offsetof (tcbhead_t, multiple_threads)) \ : "memory"); \ ret; }) -- 2.7.4