diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-05-17 18:39:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-05-17 18:39:55 +0000 |
commit | bec51a302f0e7046fcb8c4fcd13ea2969a43a9b7 (patch) | |
tree | 82ae805dd13324ad363b78617cad44928160c056 /nptl/sysdeps/unix | |
parent | a2ccc7608703da0eaf680fe80ca64e45b6a8d2ec (diff) | |
download | glibc-bec51a302f0e7046fcb8c4fcd13ea2969a43a9b7.tar.gz glibc-bec51a302f0e7046fcb8c4fcd13ea2969a43a9b7.tar.xz glibc-bec51a302f0e7046fcb8c4fcd13ea2969a43a9b7.zip |
Dummy files to prevent stub versions from being used.
* sysdeps/x86_64/fpu/k_cosl.c: New file. * sysdeps/x86_64/fpu/k_rem_pio2l.c: New file. * sysdeps/x86_64/fpu/k_sinl.c: New file. * sysdeps/x86_64/fpu/k_tanl.c: New file.
Diffstat (limited to 'nptl/sysdeps/unix')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/sem_wait.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/sem_wait.c b/nptl/sysdeps/unix/sysv/linux/sem_wait.c index e6733e88a3..d1aa97571a 100644 --- a/nptl/sysdeps/unix/sysv/linux/sem_wait.c +++ b/nptl/sysdeps/unix/sysv/linux/sem_wait.c @@ -1,5 +1,5 @@ /* sem_wait -- wait on a semaphore. Generic futex-using version. - Copyright (C) 2003 Free Software Foundation, Inc. + Copyright (C) 2003, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003. @@ -31,9 +31,6 @@ int __new_sem_wait (sem_t *sem) { - /* First check for cancellation. */ - CANCELLATION_P (THREAD_SELF); - int *futex = (int *) sem; int err; |