aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/sysdeps/sh/pt-machine.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-04-11 03:00:52 +0000
committerUlrich Drepper <drepper@redhat.com>2001-04-11 03:00:52 +0000
commit07bccb46708982ee080a3a57033df6ad392b82a5 (patch)
tree7e9cb44d00bd3a21aa1f2922dbe1beee6b5d4279 /linuxthreads/sysdeps/sh/pt-machine.h
parent671ab00dcc3eaa263ab225ac26e7fc6b7677b3d0 (diff)
downloadglibc-07bccb46708982ee080a3a57033df6ad392b82a5.tar
glibc-07bccb46708982ee080a3a57033df6ad392b82a5.tar.gz
glibc-07bccb46708982ee080a3a57033df6ad392b82a5.tar.bz2
glibc-07bccb46708982ee080a3a57033df6ad392b82a5.zip
Update.
2000-4-10 kaz Kojima <kkojima@rr.iij4u.or.jp> * sysdeps/sh/stackinfo.h: New file.
Diffstat (limited to 'linuxthreads/sysdeps/sh/pt-machine.h')
-rw-r--r--linuxthreads/sysdeps/sh/pt-machine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/sysdeps/sh/pt-machine.h b/linuxthreads/sysdeps/sh/pt-machine.h
index a54fa12da8..cdffeceee6 100644
--- a/linuxthreads/sysdeps/sh/pt-machine.h
+++ b/linuxthreads/sysdeps/sh/pt-machine.h
@@ -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);
}