diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-18 05:55:14 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-18 05:55:14 +0000 |
commit | 308afe5f2bb1219cce3e4f300e5e3df78986259d (patch) | |
tree | cbff1de1949a282cd005eca79318a76d12cd8ae0 /linuxthreads | |
parent | 927a8431da39ce150f5065d1049a7f6f59206028 (diff) | |
download | glibc-308afe5f2bb1219cce3e4f300e5e3df78986259d.tar.gz glibc-308afe5f2bb1219cce3e4f300e5e3df78986259d.tar.xz glibc-308afe5f2bb1219cce3e4f300e5e3df78986259d.zip |
* sysdeps/s390/pt-machine.h (testandset): Use long int as return
value. * sysdeps/arm/pt-machine.h (testandset): Likewise. * sysdeps/hppa/pt-machine.h (testandset): Likewise. * sysdeps/m68k/pt-machine.h (testandset): Likewise. * sysdeps/sh/pt-machine.h (testandset): Likewise. * sysdeps/sparc/sparc32/pt-machine.h (testandset): Likewise. * sysdeps/sparc/sparc64/pt-machine.h (testandset): Likewise.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/sysdeps/arm/pt-machine.h | 4 | ||||
-rw-r--r-- | linuxthreads/sysdeps/hppa/pt-machine.h | 2 | ||||
-rw-r--r-- | linuxthreads/sysdeps/m68k/pt-machine.h | 4 | ||||
-rw-r--r-- | linuxthreads/sysdeps/s390/pt-machine.h | 4 | ||||
-rw-r--r-- | linuxthreads/sysdeps/sh/pt-machine.h | 2 | ||||
-rw-r--r-- | linuxthreads/sysdeps/sparc/sparc32/pt-machine.h | 4 | ||||
-rw-r--r-- | linuxthreads/sysdeps/sparc/sparc64/pt-machine.h | 2 |
7 files changed, 11 insertions, 11 deletions
diff --git a/linuxthreads/sysdeps/arm/pt-machine.h b/linuxthreads/sysdeps/arm/pt-machine.h index d4dc4c4ed9..1079de4a41 100644 --- a/linuxthreads/sysdeps/arm/pt-machine.h +++ b/linuxthreads/sysdeps/arm/pt-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent pthreads configuration and inline functions. ARM version. - Copyright (C) 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Philip Blundell <philb@gnu.org>. @@ -29,7 +29,7 @@ time; let's hope nobody tries to use one. */ /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { register unsigned int ret; diff --git a/linuxthreads/sysdeps/hppa/pt-machine.h b/linuxthreads/sysdeps/hppa/pt-machine.h index bc0d2d655f..4035349f48 100644 --- a/linuxthreads/sysdeps/hppa/pt-machine.h +++ b/linuxthreads/sysdeps/hppa/pt-machine.h @@ -38,7 +38,7 @@ register char * stack_pointer __asm__ ("%r30"); #define xstr(s) str(s) #define str(s) #s /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { int ret; diff --git a/linuxthreads/sysdeps/m68k/pt-machine.h b/linuxthreads/sysdeps/m68k/pt-machine.h index 38ea681143..963b1956f8 100644 --- a/linuxthreads/sysdeps/m68k/pt-machine.h +++ b/linuxthreads/sysdeps/m68k/pt-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent pthreads configuration and inline functions. m68k version. - Copyright (C) 1996, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson <rth@tamu.edu>. @@ -25,7 +25,7 @@ /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { char ret; diff --git a/linuxthreads/sysdeps/s390/pt-machine.h b/linuxthreads/sysdeps/s390/pt-machine.h index a006efc20c..d7ccf296e3 100644 --- a/linuxthreads/sysdeps/s390/pt-machine.h +++ b/linuxthreads/sysdeps/s390/pt-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent pthreads configuration and inline functions. S390 version. - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2000 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of the GNU C Library. @@ -24,7 +24,7 @@ #endif /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { int ret; diff --git a/linuxthreads/sysdeps/sh/pt-machine.h b/linuxthreads/sysdeps/sh/pt-machine.h index e5e5597a91..a54fa12da8 100644 --- a/linuxthreads/sysdeps/sh/pt-machine.h +++ b/linuxthreads/sysdeps/sh/pt-machine.h @@ -24,7 +24,7 @@ #endif /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { int ret; diff --git a/linuxthreads/sysdeps/sparc/sparc32/pt-machine.h b/linuxthreads/sysdeps/sparc/sparc32/pt-machine.h index ddf4932af9..043cdeb116 100644 --- a/linuxthreads/sysdeps/sparc/sparc32/pt-machine.h +++ b/linuxthreads/sysdeps/sparc/sparc32/pt-machine.h @@ -1,6 +1,6 @@ /* Machine-dependent pthreads configuration and inline functions. sparc version. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson <rth@tamu.edu>. @@ -24,7 +24,7 @@ #endif /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { int ret; diff --git a/linuxthreads/sysdeps/sparc/sparc64/pt-machine.h b/linuxthreads/sysdeps/sparc/sparc64/pt-machine.h index e5695c0489..8fc5cc6a5e 100644 --- a/linuxthreads/sysdeps/sparc/sparc64/pt-machine.h +++ b/linuxthreads/sysdeps/sparc/sparc64/pt-machine.h @@ -25,7 +25,7 @@ /* Spinlock implementation; required. */ -PT_EI int +PT_EI long int testandset (int *spinlock) { int ret; |