diff options
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/i386')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h index dbe89e1c7c..8b302c9dc4 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -300,20 +300,6 @@ extern int __lll_timedwait_tid (int *tid, const struct timespec *abstime) __result; }) -#define lll_wake_tid(tid) \ - do { \ - int __ignore; \ - (tid) = 0; \ - __asm __volatile (LLL_TID_EBX_LOAD \ - LLL_TID_ENTER_KERNEL \ - LLL_TID_EBX_LOAD \ - : "=a" (__ignore) \ - : "0" (SYS_futex), LLL_TID_EBX_REG (&(tid)), "S" (0), \ - "c" (FUTEX_WAKE), "d" (0x7fffffff) \ - "i" (offsetof (tcbhead_t, sysinfo))); \ - } while (0) - - /* Conditional variable handling. */ extern void __lll_cond_wait (pthread_cond_t *cond) |