]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 11 Apr 2001 03:00:52 +0000 (03:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 11 Apr 2001 03:00:52 +0000 (03:00 +0000)
2000-4-10  kaz Kojima  <kkojima@rr.iij4u.or.jp>

* sysdeps/sh/stackinfo.h: New file.

ChangeLog
linuxthreads/ChangeLog
linuxthreads/sysdeps/sh/pspinlock.c
linuxthreads/sysdeps/sh/pt-machine.h
locale/tst-C-locale.c
sysdeps/sh/stackinfo.h [new file with mode: 0644]

index 44cc2024e4aa1518baaec154521923a55b4db337..8e41574f6457e3d924d61de932102336463ab40e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-4-10  kaz Kojima  <kkojima@rr.iij4u.or.jp>
+
+       * sysdeps/sh/stackinfo.h: New file.
+
 2001-04-10  Ulrich Drepper  <drepper@redhat.com>
 
        * locale/tst-C-locale.c (run_test): Add tests for locale objects.
index 917ab715f11108fbe34c4dbf7c0a87f1b6098016..805e837af5aaff2a6a46b173de670807bfffb7fd 100644 (file)
@@ -1,3 +1,10 @@
+2001-04-10  kaz Kojima  <kkojima@rr.iij4u.or.jp>
+
+       * sysdeps/sh/pspinlock.c (__pthread_spin_lock): Fix a reverse
+       test.
+       (__pthread_spin_trylock): Likewise.
+       * sysdeps/sh/pt-machine.h (testandset): Likewise.
+
 2001-04-10  Ulrich Drepper  <drepper@redhat.com>
 
        * join.c (pthread_exit): Move code to new function __pthread_do_exit
index 2da3bc42d4b642a503aca4dc2fb6a18fd649330e..3623cb5489a11a4fcda29c039e9f874b3126fb41 100644 (file)
@@ -1,5 +1,5 @@
 /* POSIX spinlock implementation.  SH version.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -31,7 +31,7 @@ __pthread_spin_lock (pthread_spinlock_t *lock)
                  : "=r" (val)
                  : "r" (lock)
                  : "memory");
-  while (val != 0);
+  while (val == 0);
 
   return 0;
 }
@@ -47,7 +47,7 @@ __pthread_spin_trylock (pthread_spinlock_t *lock)
                : "=r" (val)
                : "r" (lock)
                : "memory");
-  return val ? EBUSY : 0;
+  return val ? 0 : EBUSY;
 }
 weak_alias (__pthread_spin_trylock, pthread_spin_trylock)
 
index a54fa12da8ab9e52c993ee51e990fe8c538f4272..cdffeceee69bef735bcc754d7ff1b00dc9f4b173 100644 (file)
@@ -1,6 +1,6 @@
 /* Machine-dependent pthreads configuration and inline functions.
    SuperH version.
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Niibe Yutaka <gniibe@m17n.org>.
 
@@ -32,11 +32,11 @@ testandset (int *spinlock)
   __asm__ __volatile__(
        "tas.b  @%1\n\t"
        "movt   %0"
-       : "=z" (ret)
+       : "=r" (ret)
        : "r" (spinlock)
        : "memory", "cc");
 
-  return ret;
+  return (ret == 0);
 }
 
 
index 1d2137270dcf0bc744bee22b69e59fadcb606840..257ee3b347993187795a1859abd478899f64c11c 100644 (file)
@@ -375,6 +375,7 @@ run_test (const char *locname)
            }
          CLASSTEST (alnum);
          CLASSTEST (alpha);
+         CLASSTEST (blank);
          CLASSTEST (cntrl);
          CLASSTEST (digit);
          CLASSTEST (lower);
@@ -396,6 +397,8 @@ run_test (const char *locname)
          MAPTEST (lower);
          MAPTEST (upper);
        }
+
+      __freelocale (loc);
     }
 
   return result;
diff --git a/sysdeps/sh/stackinfo.h b/sysdeps/sh/stackinfo.h
new file mode 100644 (file)
index 0000000..efba21a
--- /dev/null
@@ -0,0 +1,28 @@
+/* Copyright (C) 2001 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+/* This file contains a bit of information about the stack allocation
+   of the processor.  */
+
+#ifndef _STACKINFO_H
+#define _STACKINFO_H   1
+
+/* On SH the stack grows down.  */
+#define _STACK_GROWS_DOWN      1
+
+#endif /* stackinfo.h */
This page took 0.053231 seconds and 5 git commands to generate.