Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 31 Jul 2003 09:25:54 +0000 (09:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 31 Jul 2003 09:25:54 +0000 (09:25 +0000)
2003-07-31  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
(__pthread_cond_timedwait): Don't use cmov unless HAVE_CMOV is defined.
* sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
Define HAVE_CMOV.
Patch by Nicholas Miell <nmiell@attbi.com>.

nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S

index d79e798..d5b5c07 100644 (file)
@@ -1,3 +1,11 @@
+2003-07-31  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
+       (__pthread_cond_timedwait): Don't use cmov unless HAVE_CMOV is defined.
+       * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
+       Define HAVE_CMOV.
+       Patch by Nicholas Miell <nmiell@attbi.com>.
+
 2003-07-30  Jakub Jelinek  <jakub@redhat.com>
 
        * init.c (__pthread_initialize_minimal_internal): Initialize
index f09be44..f88d2d3 100644 (file)
@@ -226,7 +226,13 @@ __pthread_cond_timedwait:
 
        /* We return the result of the mutex_lock operation if it failed.  */
        testl   %eax, %eax
+#ifdef HAVE_CMOV
        cmovel  %esi, %eax
+#else
+       jne     22f
+       movl    %esi, %eax
+22:
+#endif
 
 18:    popl    %ebx
 .Lpop_ebx:
index c013155..07d481f 100644 (file)
@@ -17,4 +17,5 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
+#define HAVE_CMOV 1
 #include "../i486/pthread_cond_timedwait.S"